Change capability field to __le16 in struct ap_info_t, struct link_ap_info_t, and struct local_ap_t. This fixes a sparse warning. Signed-off-by: Johan Svensson <johan.svensson692@xxxxxxxxx> --- drivers/staging/ks7010/ks_hostif.h | 4 ++-- drivers/staging/ks7010/ks_wlan.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/ks7010/ks_hostif.h b/drivers/staging/ks7010/ks_hostif.h index 30c49b6..e7f814f 100644 --- a/drivers/staging/ks7010/ks_hostif.h +++ b/drivers/staging/ks7010/ks_hostif.h @@ -284,7 +284,7 @@ struct ap_info_t { uint8_t noise; /* +08 */ uint8_t pad0; /* +09 */ uint16_t beacon_period; /* +10 */ - uint16_t capability; /* +12 */ + __le16 capability; /* +12 */ #define BSS_CAP_ESS (1<<0) #define BSS_CAP_IBSS (1<<1) #define BSS_CAP_CF_POLABLE (1<<2) @@ -311,7 +311,7 @@ struct link_ap_info_t { uint8_t noise; /* +08 */ uint8_t pad0; /* +09 */ uint16_t beacon_period; /* +10 */ - uint16_t capability; /* +12 */ + __le16 capability; /* +12 */ struct rate_set8_t rate_set; /* +14 */ struct FhParms_t fh_parameter; /* +24 */ struct DsParms_t ds_parameter; /* +29 */ diff --git a/drivers/staging/ks7010/ks_wlan.h b/drivers/staging/ks7010/ks_wlan.h index 9ab80e1..a4655a0 100644 --- a/drivers/staging/ks7010/ks_wlan.h +++ b/drivers/staging/ks7010/ks_wlan.h @@ -243,7 +243,7 @@ struct local_ap_t { u8 body[16]; u8 rate_pad; } rate_set; - u16 capability; + __le16 capability; u8 channel; u8 noise; struct rsn_ie_t wpa_ie; -- 2.7.4 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel