mirror of
https://github.com/torvalds/linux.git
synced 2024-12-19 17:41:29 +00:00
staging:rtl8188eu: Fix sparse warning cast to restricted __le16
This patch fixes the following sparse warnings: CHECK drivers/staging/rtl8188eu/hal/fw.c drivers/staging/rtl8188eu/hal/fw.c:219:13: warning: cast to restricted __le16 drivers/staging/rtl8188eu/hal/fw.c:219:13: warning: cast to restricted __le16 drivers/staging/rtl8188eu/hal/fw.c:219:13: warning: cast to restricted __le16 drivers/staging/rtl8188eu/hal/fw.c:219:13: warning: cast to restricted __le16 by changing the signature from 'u16' to '__le16'. Signed-off-by: Tobenna P. Igwe <ptigwe@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1fe473b3a2
commit
1299b721d3
@ -36,7 +36,7 @@
|
||||
#define FW_8192C_POLLING_DELAY 5
|
||||
|
||||
struct rtl92c_firmware_header {
|
||||
u16 signature;
|
||||
__le16 signature;
|
||||
u8 category;
|
||||
u8 function;
|
||||
u16 version;
|
||||
|
Loading…
Reference in New Issue
Block a user