aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/ks7010/eap_packet.h
diff options
context:
space:
mode:
authorTobin C. Harding <me@tobin.cc>2017-05-08 14:29:42 +1000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-05-15 07:43:53 +0200
commitc27fbc9237cde91e8eb75220119cd4c2bbc7082a (patch)
tree06f1054d0efe854f1a9b70a681412c0662526872 /drivers/staging/ks7010/eap_packet.h
parentstaging: vt6656: rtxt.c Fix PARENTHESIS_ALIGNMENT type errors (diff)
downloadlinux-dev-c27fbc9237cde91e8eb75220119cd4c2bbc7082a.tar.xz
linux-dev-c27fbc9237cde91e8eb75220119cd4c2bbc7082a.zip
staging: ks7010: eap, change unsigned short to __be16
Sparse emits warning: cast to restricted __be16. EAP header uses network byte order. The structures used to describe it should use __beXX data types. Change data type unsigned short -> __be16. Signed-off-by: Tobin C. Harding <me@tobin.cc> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to '')
-rw-r--r--drivers/staging/ks7010/eap_packet.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/ks7010/eap_packet.h b/drivers/staging/ks7010/eap_packet.h
index b2d25ef1cd6b..ae03f7477324 100644
--- a/drivers/staging/ks7010/eap_packet.h
+++ b/drivers/staging/ks7010/eap_packet.h
@@ -18,7 +18,7 @@ struct ether_hdr {
unsigned char h_source_snap;
unsigned char h_command;
unsigned char h_vendor_id[3];
- unsigned short h_proto; /* packet type ID field */
+ __be16 h_proto; /* packet type ID field */
#define ETHER_PROTOCOL_TYPE_EAP 0x888e
#define ETHER_PROTOCOL_TYPE_IP 0x0800
#define ETHER_PROTOCOL_TYPE_ARP 0x0806
@@ -91,7 +91,7 @@ struct ieee802_1x_eapol_key {
struct wpa_eapol_key {
unsigned char type;
- unsigned short key_info;
+ __be16 key_info;
unsigned short key_length;
unsigned char replay_counter[WPA_REPLAY_COUNTER_LEN];
unsigned char key_nonce[WPA_NONCE_LEN];