rtl8188eu: Convert "typedef struct {}LED_871x" to "struct PLED_871x"

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2013-07-22 17:07:13 -05:00
parent f29537124a
commit 7c128d19a1
6 changed files with 45 additions and 45 deletions

View file

@ -40,7 +40,7 @@
/* Description: */
/* Turn on LED according to LedPin specified. */
/* */
void SwLedOn(_adapter *padapter, PLED_871x pLed)
void SwLedOn(_adapter *padapter, struct LED_871x * pLed)
{
u8 LedCfg;
@ -72,7 +72,7 @@ void SwLedOn(_adapter *padapter, PLED_871x pLed)
/* Description: */
/* Turn off LED according to LedPin specified. */
/* */
void SwLedOff(_adapter *padapter, PLED_871x pLed)
void SwLedOff(_adapter *padapter, struct LED_871x * pLed)
{
u8 LedCfg;
HAL_DATA_TYPE *pHalData = GET_HAL_DATA(padapter);