]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
wifi: rtw88: add __packed attribute to efuse layout struct
authorPing-Ke Shih <pkshih@realtek.com>
Thu, 12 Dec 2024 05:42:03 +0000 (13:42 +0800)
committerPing-Ke Shih <pkshih@realtek.com>
Mon, 23 Dec 2024 07:49:03 +0000 (15:49 +0800)
The layout struct of efuse should not do address alignment by compiler.
Otherwise it leads unexpected layout and size for certain arch suc as arm.
In x86-64, the results are identical before and after this patch.

Also adjust bit-field to prevent over adjacent byte to avoid warning:
  rtw88/rtw8822b.h:66:1: note: offset of packed bit-field `res2` has changed in GCC 4.4
   66 | } __packed;
      | ^

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202412120131.qk0x6OhE-lkp@intel.com/
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Link: https://patch.msgid.link/20241212054203.135046-1-pkshih@realtek.com
drivers/net/wireless/realtek/rtw88/main.h
drivers/net/wireless/realtek/rtw88/rtw8723x.h
drivers/net/wireless/realtek/rtw88/rtw8821c.h
drivers/net/wireless/realtek/rtw88/rtw8822b.h
drivers/net/wireless/realtek/rtw88/rtw8822c.h

index cd09fb6f7b8b339412ac2a194ec05566b9ffaa2c..65c7acea41aff472675ae792a474f9c218b6bc5e 100644 (file)
@@ -510,12 +510,12 @@ struct rtw_5g_txpwr_idx {
        struct rtw_5g_vht_ns_pwr_idx_diff vht_2s_diff;
        struct rtw_5g_vht_ns_pwr_idx_diff vht_3s_diff;
        struct rtw_5g_vht_ns_pwr_idx_diff vht_4s_diff;
-};
+} __packed;
 
 struct rtw_txpwr_idx {
        struct rtw_2g_txpwr_idx pwr_idx_2g;
        struct rtw_5g_txpwr_idx pwr_idx_5g;
-};
+} __packed;
 
 struct rtw_channel_params {
        u8 center_chan;
index e93bfce994bf827c454a62c9c7972d1050af67f8..a99af527c92cfbd0fa09be78bdb57a410ff0603e 100644 (file)
@@ -47,7 +47,7 @@ struct rtw8723xe_efuse {
        u8 device_id[2];
        u8 sub_vendor_id[2];
        u8 sub_device_id[2];
-};
+} __packed;
 
 struct rtw8723xu_efuse {
        u8 res4[48];                    /* 0xd0 */
@@ -56,12 +56,12 @@ struct rtw8723xu_efuse {
        u8 usb_option;                  /* 0x104 */
        u8 res5[2];                     /* 0x105 */
        u8 mac_addr[ETH_ALEN];          /* 0x107 */
-};
+} __packed;
 
 struct rtw8723xs_efuse {
        u8 res4[0x4a];                  /* 0xd0 */
        u8 mac_addr[ETH_ALEN];          /* 0x11a */
-};
+} __packed;
 
 struct rtw8723x_efuse {
        __le16 rtl_id;
@@ -96,7 +96,7 @@ struct rtw8723x_efuse {
                struct rtw8723xu_efuse u;
                struct rtw8723xs_efuse s;
        };
-};
+} __packed;
 
 #define RTW8723X_IQK_ADDA_REG_NUM      16
 #define RTW8723X_IQK_MAC8_REG_NUM      3
index 7a33ebd612eda6eefad15340817c71d6e8be24bf..954e93c8020d81a0a24adb0b88b54cfabf078eed 100644 (file)
@@ -27,7 +27,7 @@ struct rtw8821cu_efuse {
        u8 res11[0xcf];
        u8 package_type;                /* 0x1fb */
        u8 res12[0x4];
-};
+} __packed;
 
 struct rtw8821ce_efuse {
        u8 mac_addr[ETH_ALEN];          /* 0xd0 */
@@ -47,7 +47,8 @@ struct rtw8821ce_efuse {
        u8 ltr_en:1;
        u8 res1:2;
        u8 obff:2;
-       u8 res2:3;
+       u8 res2_1:1;
+       u8 res2_2:2;
        u8 obff_cap:2;
        u8 res3:4;
        u8 res4[3];
@@ -63,7 +64,7 @@ struct rtw8821ce_efuse {
        u8 res6:1;
        u8 port_t_power_on_value:5;
        u8 res7;
-};
+} __packed;
 
 struct rtw8821cs_efuse {
        u8 res4[0x4a];                  /* 0xd0 */
@@ -101,7 +102,7 @@ struct rtw8821c_efuse {
                struct rtw8821cu_efuse u;
                struct rtw8821cs_efuse s;
        };
-};
+} __packed;
 
 static inline void
 _rtw_write32s_mask(struct rtw_dev *rtwdev, u32 addr, u32 mask, u32 data)
index 0514958fb57c366b6b478529ec29f4083c04d162..9fca9ba67c90f124dd1da08e65aa962e52234364 100644 (file)
@@ -27,7 +27,7 @@ struct rtw8822bu_efuse {
        u8 res11[0xcf];
        u8 package_type;                /* 0x1fb */
        u8 res12[0x4];
-};
+} __packed;
 
 struct rtw8822be_efuse {
        u8 mac_addr[ETH_ALEN];          /* 0xd0 */
@@ -47,7 +47,8 @@ struct rtw8822be_efuse {
        u8 ltr_en:1;
        u8 res1:2;
        u8 obff:2;
-       u8 res2:3;
+       u8 res2_1:1;
+       u8 res2_2:2;
        u8 obff_cap:2;
        u8 res3:4;
        u8 res4[3];
@@ -63,7 +64,7 @@ struct rtw8822be_efuse {
        u8 res6:1;
        u8 port_t_power_on_value:5;
        u8 res7;
-};
+} __packed;
 
 struct rtw8822bs_efuse {
        u8 res4[0x4a];                  /* 0xd0 */
@@ -103,7 +104,7 @@ struct rtw8822b_efuse {
                struct rtw8822bu_efuse u;
                struct rtw8822bs_efuse s;
        };
-};
+} __packed;
 
 static inline void
 _rtw_write32s_mask(struct rtw_dev *rtwdev, u32 addr, u32 mask, u32 data)
index e2b383d633cd23765ce121dd87a0826e12183728..fc62b67a15f216496bfb572a55366f900a2d6734 100644 (file)
@@ -14,7 +14,7 @@ struct rtw8822cu_efuse {
        u8 res1[3];
        u8 mac_addr[ETH_ALEN];          /* 0x157 */
        u8 res2[0x3d];
-};
+} __packed;
 
 struct rtw8822cs_efuse {
        u8 res0[0x4a];                  /* 0x120 */
@@ -39,7 +39,8 @@ struct rtw8822ce_efuse {
        u8 ltr_en:1;
        u8 res1:2;
        u8 obff:2;
-       u8 res2:3;
+       u8 res2_1:1;
+       u8 res2_2:2;
        u8 obff_cap:2;
        u8 res3:4;
        u8 class_code[3];
@@ -55,7 +56,7 @@ struct rtw8822ce_efuse {
        u8 res6:1;
        u8 port_t_power_on_value:5;
        u8 res7;
-};
+} __packed;
 
 struct rtw8822c_efuse {
        __le16 rtl_id;
@@ -102,7 +103,7 @@ struct rtw8822c_efuse {
                struct rtw8822cu_efuse u;
                struct rtw8822cs_efuse s;
        };
-};
+} __packed;
 
 enum rtw8822c_dpk_agc_phase {
        RTW_DPK_GAIN_CHECK,