All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: vt6656: vnt_rf_setpower: fix missing rate RATE_12M
@ 2015-03-07 16:36 Malcolm Priestley
  2015-03-26 15:22 ` Luis Henriques
  0 siblings, 1 reply; 4+ messages in thread
From: Malcolm Priestley @ 2015-03-07 16:36 UTC (permalink / raw)
  To: gregkh; +Cc: linux-wireless, Malcolm Priestley, stable

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: Malcolm Priestley <tvboxspy@gmail.com>
Cc: <stable@vger.kernel.org> # v3.17+
---
 drivers/staging/vt6656/rf.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/staging/vt6656/rf.c b/drivers/staging/vt6656/rf.c
index c42cde5..c4286cc 100644
--- a/drivers/staging/vt6656/rf.c
+++ b/drivers/staging/vt6656/rf.c
@@ -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:
-- 
2.1.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-03-26 18:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-07 16:36 [PATCH] staging: vt6656: vnt_rf_setpower: fix missing rate RATE_12M Malcolm Priestley
2015-03-26 15:22 ` Luis Henriques
2015-03-26 18:33   ` Malcolm Priestley
2015-03-26 18:48     ` Luis Henriques

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.