diff options
author | Malcolm Priestley <[email protected]> | 2014-07-23 21:35:12 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2014-07-24 15:10:42 -0700 |
commit | 4aa0abed3a2a11b7d71ad560c1a3e7631c5a31cd (patch) | |
tree | a33d7569accf7e5cfcc93791fa47d7b22b8ad113 | |
parent | 6cff1f6ad4c615319c1a146b2aa0af1043c5e9f5 (diff) |
staging: vt6655: Fix disassociated messages every 10 seconds
byReAssocCount is incremented every second resulting in
disassociated message being send every 10 seconds whether
connection or not.
byReAssocCount should only advance while eCommandState
is in WLAN_ASSOCIATE_WAIT
Change existing scope to if condition.
Signed-off-by: Malcolm Priestley <[email protected]>
Cc: <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/vt6655/bssdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/vt6655/bssdb.c b/drivers/staging/vt6655/bssdb.c index 59679cd46816..69b80e80b011 100644 --- a/drivers/staging/vt6655/bssdb.c +++ b/drivers/staging/vt6655/bssdb.c @@ -981,7 +981,7 @@ start: pDevice->byERPFlag &= ~(WLAN_SET_ERP_USE_PROTECTION(1)); } - { + if (pDevice->eCommandState == WLAN_ASSOCIATE_WAIT) { pDevice->byReAssocCount++; /* 10 sec timeout */ if ((pDevice->byReAssocCount > 10) && (!pDevice->bLinkPass)) { |