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:
Manny Vindiola 2017-07-25 22:44:47 -04:00 committed by Greg Kroah-Hartman
parent 2d77259135
commit 8cd924a295
1 changed files with 1 additions and 1 deletions

View File

@ -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 {