forked from Minki/linux
staging: rtl8188eu: rename SwLedOn to avoid CamelCase
Rename the function SwLedOn to avoid CamelCase. SwLedOn -> sw_led_on Signed-off-by: Michael Straube <straube.linux@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3c73979334
commit
01b3ce533a
@ -94,7 +94,7 @@ static void SwLedBlink1(struct LED_871x *pLed)
|
||||
|
||||
/* Change LED according to BlinkingLedState specified. */
|
||||
if (pLed->BlinkingLedState == RTW_LED_ON) {
|
||||
SwLedOn(padapter, pLed);
|
||||
sw_led_on(padapter, pLed);
|
||||
RT_TRACE(_module_rtl8712_led_c_, _drv_info_,
|
||||
("Blinktimes (%d): turn on\n", pLed->BlinkTimes));
|
||||
} else {
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include <rtl8188e_hal.h>
|
||||
#include <usb_ops_linux.h>
|
||||
|
||||
void SwLedOn(struct adapter *padapter, struct LED_871x *pLed)
|
||||
void sw_led_on(struct adapter *padapter, struct LED_871x *pLed)
|
||||
{
|
||||
u8 led_cfg;
|
||||
|
||||
|
@ -94,7 +94,7 @@ void DeInitLed871x(struct LED_871x *pLed);
|
||||
|
||||
/* hal... */
|
||||
void BlinkHandler(struct LED_871x *pLed);
|
||||
void SwLedOn(struct adapter *padapter, struct LED_871x *pLed);
|
||||
void sw_led_on(struct adapter *padapter, struct LED_871x *pLed);
|
||||
void SwLedOff(struct adapter *padapter, struct LED_871x *pLed);
|
||||
|
||||
#endif /* __RTW_LED_H_ */
|
||||
|
Loading…
Reference in New Issue
Block a user