staging: rtl8188eu: rename SwLedOff to avoid CamelCase
Rename the function SwLedOff to avoid CamelCase. SwLedOff -> sw_led_off Signed-off-by: Michael Straube <straube.linux@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
01b3ce533a
commit
dfd2fb58fc
@ -98,13 +98,13 @@ static void SwLedBlink1(struct LED_871x *pLed)
|
||||
RT_TRACE(_module_rtl8712_led_c_, _drv_info_,
|
||||
("Blinktimes (%d): turn on\n", pLed->BlinkTimes));
|
||||
} else {
|
||||
SwLedOff(padapter, pLed);
|
||||
sw_led_off(padapter, pLed);
|
||||
RT_TRACE(_module_rtl8712_led_c_, _drv_info_,
|
||||
("Blinktimes (%d): turn off\n", pLed->BlinkTimes));
|
||||
}
|
||||
|
||||
if (padapter->pwrctrlpriv.rf_pwrstate != rf_on) {
|
||||
SwLedOff(padapter, pLed);
|
||||
sw_led_off(padapter, pLed);
|
||||
ResetLedStatus(pLed);
|
||||
return;
|
||||
}
|
||||
@ -445,7 +445,7 @@ static void SwLedControlMode1(struct adapter *padapter, enum LED_CTL_MODE LedAct
|
||||
del_timer_sync(&pLed->BlinkTimer);
|
||||
pLed->bLedScanBlinkInProgress = false;
|
||||
}
|
||||
SwLedOff(padapter, pLed);
|
||||
sw_led_off(padapter, pLed);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
@ -21,7 +21,7 @@ void sw_led_on(struct adapter *padapter, struct LED_871x *pLed)
|
||||
pLed->bLedOn = true;
|
||||
}
|
||||
|
||||
void SwLedOff(struct adapter *padapter, struct LED_871x *pLed)
|
||||
void sw_led_off(struct adapter *padapter, struct LED_871x *pLed)
|
||||
{
|
||||
u8 led_cfg;
|
||||
|
||||
|
@ -95,6 +95,6 @@ void DeInitLed871x(struct LED_871x *pLed);
|
||||
/* hal... */
|
||||
void BlinkHandler(struct LED_871x *pLed);
|
||||
void sw_led_on(struct adapter *padapter, struct LED_871x *pLed);
|
||||
void SwLedOff(struct adapter *padapter, struct LED_871x *pLed);
|
||||
void sw_led_off(struct adapter *padapter, struct LED_871x *pLed);
|
||||
|
||||
#endif /* __RTW_LED_H_ */
|
||||
|
Loading…
Reference in New Issue
Block a user