OSDN Git Service

staging: rtl8188eu: rename define to upper case
authorMichael Straube <straube.linux@gmail.com>
Mon, 13 Apr 2020 17:59:55 +0000 (19:59 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 16 Apr 2020 11:41:01 +0000 (13:41 +0200)
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>
drivers/staging/rtl8188eu/hal/fw.c
drivers/staging/rtl8188eu/include/rtl8188e_spec.h

index 486ee4b..dbf7883 100644 (file)
@@ -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);
 
index dd943c8..be30c94 100644 (file)
@@ -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)