forked from Minki/linux
staging: rtl8188eu: rename define to upper case
Rename 'FWDL_ChkSum_rpt' to 'FWDL_CHKSUM_RPT' as defines are normaly named all upper case. Also clears a camel case checkpatch warning. Signed-off-by: Michael Straube <straube.linux@gmail.com> Link: https://lore.kernel.org/r/20200413175957.30165-2-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7f3115fbfe
commit
8349fa213e
@ -111,7 +111,7 @@ static int _rtl88e_fw_free_to_go(struct adapter *adapt)
|
||||
|
||||
do {
|
||||
value32 = usb_read32(adapt, REG_MCUFWDL);
|
||||
if (value32 & FWDL_ChkSum_rpt)
|
||||
if (value32 & FWDL_CHKSUM_RPT)
|
||||
break;
|
||||
} while (counter++ < POLLING_READY_TIMEOUT_COUNT);
|
||||
|
||||
@ -192,7 +192,7 @@ int rtl88eu_download_fw(struct adapter *adapt)
|
||||
rtl88e_firmware_selfreset(adapt);
|
||||
}
|
||||
_rtl88e_enable_fw_download(adapt, true);
|
||||
usb_write8(adapt, REG_MCUFWDL, usb_read8(adapt, REG_MCUFWDL) | FWDL_ChkSum_rpt);
|
||||
usb_write8(adapt, REG_MCUFWDL, usb_read8(adapt, REG_MCUFWDL) | FWDL_CHKSUM_RPT);
|
||||
_rtl88e_write_fw(adapt, download_data, download_size);
|
||||
_rtl88e_enable_fw_download(adapt, false);
|
||||
|
||||
|
@ -817,7 +817,7 @@ So the following defines for 92C is not entire!!!!!!
|
||||
/* 2 MCUFWDL */
|
||||
#define MCUFWDL_EN BIT(0)
|
||||
#define MCUFWDL_RDY BIT(1)
|
||||
#define FWDL_ChkSum_rpt BIT(2)
|
||||
#define FWDL_CHKSUM_RPT BIT(2)
|
||||
#define MACINI_RDY BIT(3)
|
||||
#define BBINI_RDY BIT(4)
|
||||
#define RFINI_RDY BIT(5)
|
||||
|
Loading…
Reference in New Issue
Block a user