diff options
author | John W. Linville <linville@tuxdriver.com> | 2010-12-16 09:20:16 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-12-16 09:20:16 -0500 |
commit | e137478b56fd79c397b5c5c74fc08c049a42835a (patch) | |
tree | 637e2d5e8cbd355a8a06ffa757b5826279cbbf3e /drivers/net/wireless/rtlwifi/rtl8192ce | |
parent | 38cd6b4f52a75926fd81fc85f53f5067dcd809f7 (diff) |
rtlwifi: convert to __packed notation
Use "__packed" instead of "__attribute__ ((packed))"...
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rtlwifi/rtl8192ce')
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192ce/rtl8192c-trx.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/rtlwifi/rtl8192ce/rtl8192c-trx.h b/drivers/net/wireless/rtlwifi/rtl8192ce/rtl8192c-trx.h index 91e13c33351..53d0e0a5af5 100644 --- a/drivers/net/wireless/rtlwifi/rtl8192ce/rtl8192c-trx.h +++ b/drivers/net/wireless/rtlwifi/rtl8192ce/rtl8192c-trx.h @@ -535,7 +535,7 @@ struct rx_fwinfo_92c { u8 sgi_en:1; u8 rxsc:2; u8 reserve:4; -} __attribute__ ((packed)); +} __packed; struct tx_desc_92c { u32 pktsize:16; @@ -637,7 +637,7 @@ struct tx_desc_92c { u32 nextdescaddress64; u32 reserve_pass_pcie_mm_limit[4]; -} __attribute__ ((packed)); +} __packed; struct rx_desc_92c { u32 length:14; @@ -695,7 +695,7 @@ struct rx_desc_92c { u32 bufferaddress; u32 bufferaddress64; -} __attribute__ ((packed)); +} __packed; void rtl92ce_tx_fill_desc(struct ieee80211_hw *hw, struct ieee80211_hdr *hdr, |