Staging: wlan-ng: hfa384x.h: Fix endianness warning for hfa384x_ps_user_count
The field in hfa384x_ps_user_count was defined as u16 but used as __le16 Changed type to __le16 for consistency Signed-off-by: Manny Vindiola <mannyv@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2d77259135
commit
8cd924a295
|
@ -739,7 +739,7 @@ struct hfa384x_auth_request {
|
|||
/*-- Unsolicited Frame, MAC Mgmt: PSUserCount (AP Only) --*/
|
||||
|
||||
struct hfa384x_ps_user_count {
|
||||
u16 usercnt;
|
||||
__le16 usercnt;
|
||||
} __packed;
|
||||
|
||||
struct hfa384x_key_id_changed {
|
||||
|
|
Loading…
Reference in New Issue