Commit 8e3d161a authored by Greg Donald's avatar Greg Donald Committed by Greg Kroah-Hartman
Browse files

drivers: staging: rtl8723au: core: Fix "'foo * bar' should be 'foo *bar'" errors



Fix checkpatch.pl "'foo * bar' should be 'foo *bar'" errors

Signed-off-by: default avatarGreg Donald <gdonald@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 812283cd
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -51,7 +51,8 @@ void BlinkWorkItemCallback23a(struct work_struct *work)
/*	Description: */
/*		Reset status of led_8723a object. */
/*  */
void ResetLedStatus23a(struct led_8723a * pLed) {
void ResetLedStatus23a(struct led_8723a *pLed)
{

	pLed->CurrLedState = RTW_LED_OFF; /*  Current LED state. */
	pLed->bLedOn = false; /*  true if LED is ON, false if LED is OFF. */
+14 −13
Original line number Diff line number Diff line
@@ -374,7 +374,8 @@ void rtw_secgetmic23a(struct mic_data *pmicdata, u8 * dst)

}

void rtw_seccalctkipmic23a(u8 * key, u8 *header, u8 *data, u32 data_len, u8 *mic_code, u8 pri)
void rtw_seccalctkipmic23a(u8 *key, u8 *header, u8 *data, u32 data_len,
			   u8 *mic_code, u8 pri)
{

	struct mic_data	micdata;
+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.