mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 13:41:55 +00:00
rtlwifi: rtl8192ce: Fix incorrect returned values
In commit98fd8db59a
("rtlwifi: rtl8192ce: Convert macros that set descriptor"), all the routines that get fields from a descriptor were changed to return signed integer values. This is incorrect for the routines that get the entire 32-bit word. In this case, an unsigned quantity is required. Fixes:98fd8db59a
("rtlwifi: rtl8192ce: Convert macros that set descriptor") Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
38fcdcbd3d
commit
fe025ef7d0
@ -216,7 +216,7 @@ static inline void set_tx_desc_tx_buffer_address(__le32 *__pdesc, u32 __val)
|
||||
*(__pdesc + 8) = cpu_to_le32(__val);
|
||||
}
|
||||
|
||||
static inline int get_tx_desc_tx_buffer_address(__le32 *__pdesc)
|
||||
static inline u32 get_tx_desc_tx_buffer_address(__le32 *__pdesc)
|
||||
{
|
||||
return le32_to_cpu(*((__pdesc + 8)));
|
||||
}
|
||||
@ -311,12 +311,12 @@ static inline int get_rx_desc_bw(__le32 *__pdesc)
|
||||
return le32_get_bits(*((__pdesc + 3)), BIT(9));
|
||||
}
|
||||
|
||||
static inline int get_rx_desc_tsfl(__le32 *__pdesc)
|
||||
static inline u32 get_rx_desc_tsfl(__le32 *__pdesc)
|
||||
{
|
||||
return le32_to_cpu(*((__pdesc + 5)));
|
||||
}
|
||||
|
||||
static inline int get_rx_desc_buff_addr(__le32 *__pdesc)
|
||||
static inline u32 get_rx_desc_buff_addr(__le32 *__pdesc)
|
||||
{
|
||||
return le32_to_cpu(*((__pdesc + 6)));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user