Commit c1fd7cc2 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Sasha Levin

staging: vt6656: vnt_rf_setpower: fix missing rate RATE_12M

[ Upstream commit 163fe301 ]

When the driver sets this rate a power of zero value is set causing
data flow stoppage until another rate is tried.
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Cc: <stable@vger.kernel.org> # v3.17+
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarSasha Levin <sasha.levin@oracle.com>
parent f7d84d2b
......@@ -640,6 +640,7 @@ int vnt_rf_setpower(struct vnt_private *priv, u32 rate, u32 channel)
break;
case RATE_6M:
case RATE_9M:
case RATE_12M:
case RATE_18M:
case RATE_24M:
case RATE_36M:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment