Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8cd924a2 authored by Manny Vindiola's avatar Manny Vindiola Committed by Greg Kroah-Hartman
Browse files

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: default avatarManny Vindiola <mannyv@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2d772591
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 {