Skip to content

Commit

Permalink
rtlwifi: rtl8188ee: Fix warning when building on big-endian systems
Browse files Browse the repository at this point in the history
In http://lkml.indiana.edu/hypermail/linux/kernel/1305.1/index.html,
Geert Uytterhoeven reports a new warning when building 3.10-rc1 in
this driver. This is caused by using a "#if" test to see if __LITTLE_ENDIAN
is set, which fails for all big-endian systems. Change to "ifdef".

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Larry Finger authored and John W. Linville committed May 17, 2013
1 parent af69009 commit 58dd3ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/wireless/rtlwifi/rtl8188ee/trx.h
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ do { \
rxmcs == DESC92C_RATE11M)

struct phy_rx_agc_info_t {
#if __LITTLE_ENDIAN
#ifdef __LITTLE_ENDIAN
u8 gain:7, trsw:1;
#else
u8 trsw:1, gain:7;
Expand All @@ -574,7 +574,7 @@ struct phy_status_rpt {
u8 stream_target_csi[2];
u8 sig_evm;
u8 rsvd_3;
#if __LITTLE_ENDIAN
#ifdef __LITTLE_ENDIAN
u8 antsel_rx_keep_2:1; /*ex_intf_flg:1;*/
u8 sgi_en:1;
u8 rxsc:2;
Expand Down

0 comments on commit 58dd3ff

Please sign in to comment.