summaryrefslogtreecommitdiffstats
path: root/drivers/input/misc
diff options
context:
space:
mode:
authorMartin Kepplinger2017-04-11 05:39:22 +0200
committerDmitry Torokhov2017-04-11 05:41:41 +0200
commitc5cb37d0d62c58320f0a86777b738fb28272245b (patch)
tree75921a7663c9be4ce0105c6c2a02f5caacbf3e34 /drivers/input/misc
parentInput: turbografx - use setup_timer (diff)
downloadkernel-qcow2-linux-c5cb37d0d62c58320f0a86777b738fb28272245b.tar.gz
kernel-qcow2-linux-c5cb37d0d62c58320f0a86777b738fb28272245b.tar.xz
kernel-qcow2-linux-c5cb37d0d62c58320f0a86777b738fb28272245b.zip
Input: yealink - define packet offset __be16 instead of u16
sparse says warning: incorrect type in assignment (different base types) expected unsigned short [unsigned] [usertype] offset got restricted __be16 [usertype] <noident> for every usage of cpu_to_be16 in yealink.c. Defining it __be16 in the first place shouldn't hurt. Signed-off-by: Martin Kepplinger <martin.kepplinger@ginzinger.com> Signed-off-by: Henk.Vergonet@gmail.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/misc')
-rw-r--r--drivers/input/misc/yealink.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/misc/yealink.h b/drivers/input/misc/yealink.h
index 1e0f52397010..934c247f8a0f 100644
--- a/drivers/input/misc/yealink.h
+++ b/drivers/input/misc/yealink.h
@@ -28,7 +28,7 @@
struct yld_ctl_packet {
u8 cmd; /* command code, see below */
u8 size; /* 1-11, size of used data bytes. */
- u16 offset; /* internal packet offset */
+ __be16 offset; /* internal packet offset */
u8 data[11];
s8 sum; /* negative sum of 15 preceding bytes */
} __attribute__ ((packed));