]> git.baikalelectronics.ru Git - kernel.git/commitdiff
rtlwifi: rtl8188ee: Remove local configuration variable
authorLarry Finger <Larry.Finger@lwfinger.net>
Wed, 31 Jul 2019 00:33:04 +0000 (19:33 -0500)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 6 Aug 2019 12:41:41 +0000 (15:41 +0300)
The configuration variable IS_LITTLE_ENDIAN is replaced by the standard
__LITTLE_ENDIAN. In addition, an unused struct is removed.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/realtek/rtlwifi/rtl8188ee/trx.h

index 4e3682ded89e463d072db18a81300c166e9b3987..bd862732d6aeea21659849c51d217389893b3aac 100644 (file)
@@ -560,17 +560,7 @@ static inline void clear_pci_tx_desc_content(__le32 *__pdesc, int _size)
         rxmcs == DESC92C_RATE5_5M ||\
         rxmcs == DESC92C_RATE11M)
 
-#define IS_LITTLE_ENDIAN       1
-
-struct phy_rx_agc_info_t {
-       #if IS_LITTLE_ENDIAN
-               u8      gain:7, trsw:1;
-       #else
-               u8      trsw:1, gain:7;
-       #endif
-};
 struct phy_status_rpt {
-       struct phy_rx_agc_info_t path_agc[2];
        u8      ch_corr[2];
        u8      cck_sig_qual_ofdm_pwdb_all;
        u8      cck_agc_rpt_ofdm_cfosho_a;
@@ -587,7 +577,7 @@ struct phy_status_rpt {
        u8      stream_target_csi[2];
        u8      sig_evm;
        u8      rsvd_3;
-#if IS_LITTLE_ENDIAN
+#if defined(__LITTLE_ENDIAN)
        u8      antsel_rx_keep_2:1;     /*ex_intf_flg:1;*/
        u8      sgi_en:1;
        u8      rxsc:2;
@@ -595,7 +585,7 @@ struct phy_status_rpt {
        u8      r_ant_train_en:1;
        u8      ant_sel_b:1;
        u8      ant_sel:1;
-#else  /* _BIG_ENDIAN_ */
+#else  /* __BIG_ENDIAN */
        u8      ant_sel:1;
        u8      ant_sel_b:1;
        u8      r_ant_train_en:1;