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:
Michael Straube 2018-11-21 20:49:32 +01:00 committed by Greg Kroah-Hartman
parent 3c73979334
commit 01b3ce533a
3 changed files with 3 additions and 3 deletions

View File

@ -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 {

View File

@ -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;

View File

@ -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_ */