Staging: wlan-ng: hfa384x.h: fixed sparse warning
Fields of hfa384x_commsquality were used as __le16 but defined as u16. Type is changed to __le16. Signed-off-by: Vitali Liaukovich <vitali.liaukovich@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c955bb478c
commit
7d647bcf7e
|
@ -445,9 +445,9 @@ struct hfa384x_downloadbuffer {
|
|||
|
||||
/*-- Information Record: commsquality --*/
|
||||
struct hfa384x_commsquality {
|
||||
u16 cq_curr_bss;
|
||||
u16 asl_curr_bss;
|
||||
u16 anl_curr_fc;
|
||||
__le16 cq_curr_bss;
|
||||
__le16 asl_curr_bss;
|
||||
__le16 anl_curr_fc;
|
||||
} __packed;
|
||||
|
||||
/*-- Information Record: dmbcommsquality --*/
|
||||
|
|
Loading…
Reference in New Issue