Sparse emits warning: cast to restricted __be16. This warning is
caused by passing an unsigned short as argument to ntohs(). ntohs() is
defined in linux/byteorder/generic.h (via __ntohs()) to
__be16_to_cpu(). The argument should therefore be big endian.

Change data type unsigned short -> __be16.

Signed-off-by: Tobin C. Harding <m...@tobin.cc>
---
 drivers/staging/ks7010/eap_packet.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/ks7010/eap_packet.h 
b/drivers/staging/ks7010/eap_packet.h
index 7a3decf..124167f 100644
--- a/drivers/staging/ks7010/eap_packet.h
+++ b/drivers/staging/ks7010/eap_packet.h
@@ -16,7 +16,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
@@ -89,7 +89,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];
-- 
2.7.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to