Commit 9fa1f943 authored by Namrata A Shettar's avatar Namrata A Shettar Committed by Greg Kroah-Hartman

staging: rtl8712: Rename misspelt macro

Correct the word 'success' being misspelt in the macro:
- LED_BLINK_WPS_SUCESS_INTERVAL_ALPHA => LED_BLINK_WPS_SUCCESS_INTERVAL_ALPHA
Signed-off-by: default avatarNamrata A Shettar <namrataashettar@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c60298c5
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
#define LED_BLINK_LINK_INTERVAL_ALPHA 500 #define LED_BLINK_LINK_INTERVAL_ALPHA 500
#define LED_BLINK_SCAN_INTERVAL_ALPHA 180 #define LED_BLINK_SCAN_INTERVAL_ALPHA 180
#define LED_BLINK_FASTER_INTERVAL_ALPHA 50 #define LED_BLINK_FASTER_INTERVAL_ALPHA 50
#define LED_BLINK_WPS_SUCESS_INTERVAL_ALPHA 5000 #define LED_BLINK_WPS_SUCCESS_INTERVAL_ALPHA 5000
/*=========================================================================== /*===========================================================================
* LED object. * LED object.
...@@ -410,7 +410,7 @@ static void SwLedBlink1(struct LED_871x *pLed) ...@@ -410,7 +410,7 @@ static void SwLedBlink1(struct LED_871x *pLed)
if (pLed->BlinkingLedState == LED_ON) { if (pLed->BlinkingLedState == LED_ON) {
pLed->BlinkingLedState = LED_OFF; pLed->BlinkingLedState = LED_OFF;
mod_timer(&pLed->BlinkTimer, jiffies + mod_timer(&pLed->BlinkTimer, jiffies +
msecs_to_jiffies(LED_BLINK_WPS_SUCESS_INTERVAL_ALPHA)); msecs_to_jiffies(LED_BLINK_WPS_SUCCESS_INTERVAL_ALPHA));
bStopBlinking = false; bStopBlinking = false;
} else { } else {
bStopBlinking = true; bStopBlinking = true;
...@@ -574,7 +574,7 @@ static void SwLedBlink3(struct LED_871x *pLed) ...@@ -574,7 +574,7 @@ static void SwLedBlink3(struct LED_871x *pLed)
if (pLed->BlinkingLedState == LED_ON) { if (pLed->BlinkingLedState == LED_ON) {
pLed->BlinkingLedState = LED_OFF; pLed->BlinkingLedState = LED_OFF;
mod_timer(&pLed->BlinkTimer, jiffies + mod_timer(&pLed->BlinkTimer, jiffies +
msecs_to_jiffies(LED_BLINK_WPS_SUCESS_INTERVAL_ALPHA)); msecs_to_jiffies(LED_BLINK_WPS_SUCCESS_INTERVAL_ALPHA));
bStopBlinking = false; bStopBlinking = false;
} else { } else {
bStopBlinking = true; bStopBlinking = true;
...@@ -1052,7 +1052,7 @@ static void SwLedControlMode1(struct _adapter *padapter, ...@@ -1052,7 +1052,7 @@ static void SwLedControlMode1(struct _adapter *padapter,
if (pLed->bLedOn) { if (pLed->bLedOn) {
pLed->BlinkingLedState = LED_OFF; pLed->BlinkingLedState = LED_OFF;
mod_timer(&pLed->BlinkTimer, jiffies + mod_timer(&pLed->BlinkTimer, jiffies +
msecs_to_jiffies(LED_BLINK_WPS_SUCESS_INTERVAL_ALPHA)); msecs_to_jiffies(LED_BLINK_WPS_SUCCESS_INTERVAL_ALPHA));
} else { } else {
pLed->BlinkingLedState = LED_ON; pLed->BlinkingLedState = LED_ON;
mod_timer(&pLed->BlinkTimer, mod_timer(&pLed->BlinkTimer,
...@@ -1332,7 +1332,7 @@ static void SwLedControlMode3(struct _adapter *padapter, ...@@ -1332,7 +1332,7 @@ static void SwLedControlMode3(struct _adapter *padapter,
if (pLed->bLedOn) { if (pLed->bLedOn) {
pLed->BlinkingLedState = LED_OFF; pLed->BlinkingLedState = LED_OFF;
mod_timer(&pLed->BlinkTimer, jiffies + mod_timer(&pLed->BlinkTimer, jiffies +
msecs_to_jiffies(LED_BLINK_WPS_SUCESS_INTERVAL_ALPHA)); msecs_to_jiffies(LED_BLINK_WPS_SUCCESS_INTERVAL_ALPHA));
} else { } else {
pLed->BlinkingLedState = LED_ON; pLed->BlinkingLedState = LED_ON;
mod_timer(&pLed->BlinkTimer, mod_timer(&pLed->BlinkTimer,
......
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