aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2012-02-20 09:31:31 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-02-24 15:05:37 -0500
commit3e495b2104f782ae36830ea875bfe1a12aa7b2f1 (patch)
tree84fc527d0f6122ad2f0892fb4359783e4d0fc7b6 /drivers/staging/vt6656
parentb5c19ca8014aa5151712274d5e70c3666a8918c1 (diff)
staging: Fix typo in bssdb.c
Correct spelling "scaning" to "scanning" in drivers/staging/vt6656/bssdb.c drivers/staging/vt6655/bssdb.c Signed-off-by: Masanari Iida <standby24x7@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6656')
-rw-r--r--drivers/staging/vt6656/bssdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/vt6656/bssdb.c b/drivers/staging/vt6656/bssdb.c
index 32c67ed8435..619c257e877 100644
--- a/drivers/staging/vt6656/bssdb.c
+++ b/drivers/staging/vt6656/bssdb.c
@@ -1195,13 +1195,13 @@ else {
1195 } 1195 }
1196 1196
1197 if (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) { 1197 if (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) {
1198 // if adhoc started which essid is NULL string, rescaning. 1198 // if adhoc started which essid is NULL string, rescanning.
1199 if ((pMgmt->eCurrState == WMAC_STATE_STARTED) && (pCurrSSID->len == 0)) { 1199 if ((pMgmt->eCurrState == WMAC_STATE_STARTED) && (pCurrSSID->len == 0)) {
1200 if (pDevice->uAutoReConnectTime < 10) { 1200 if (pDevice->uAutoReConnectTime < 10) {
1201 pDevice->uAutoReConnectTime++; 1201 pDevice->uAutoReConnectTime++;
1202 } 1202 }
1203 else { 1203 else {
1204 DBG_PRT(MSG_LEVEL_NOTICE, KERN_INFO "Adhoc re-scaning ...\n"); 1204 DBG_PRT(MSG_LEVEL_NOTICE, KERN_INFO "Adhoc re-scanning ...\n");
1205 pMgmt->eScanType = WMAC_SCAN_ACTIVE; 1205 pMgmt->eScanType = WMAC_SCAN_ACTIVE;
1206 bScheduleCommand((void *) pDevice, WLAN_CMD_BSSID_SCAN, NULL); 1206 bScheduleCommand((void *) pDevice, WLAN_CMD_BSSID_SCAN, NULL);
1207 bScheduleCommand((void *) pDevice, WLAN_CMD_SSID, NULL); 1207 bScheduleCommand((void *) pDevice, WLAN_CMD_SSID, NULL);