]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
4.4-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 20 Aug 2019 16:54:54 +0000 (09:54 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 20 Aug 2019 16:54:54 +0000 (09:54 -0700)
added patches:
input-psmouse-fix-build-error-of-multiple-definition.patch

queue-4.4/input-psmouse-fix-build-error-of-multiple-definition.patch [new file with mode: 0644]
queue-4.4/series

diff --git a/queue-4.4/input-psmouse-fix-build-error-of-multiple-definition.patch b/queue-4.4/input-psmouse-fix-build-error-of-multiple-definition.patch
new file mode 100644 (file)
index 0000000..7faa429
--- /dev/null
@@ -0,0 +1,39 @@
+From 49e6979e7e92cf496105b5636f1df0ac17c159c0 Mon Sep 17 00:00:00 2001
+From: YueHaibing <yuehaibing@huawei.com>
+Date: Tue, 16 Jul 2019 20:17:20 +0200
+Subject: Input: psmouse - fix build error of multiple definition
+
+From: YueHaibing <yuehaibing@huawei.com>
+
+commit 49e6979e7e92cf496105b5636f1df0ac17c159c0 upstream.
+
+trackpoint_detect() should be static inline while
+CONFIG_MOUSE_PS2_TRACKPOINT is not set, otherwise, we build fails:
+
+drivers/input/mouse/alps.o: In function `trackpoint_detect':
+alps.c:(.text+0x8e00): multiple definition of `trackpoint_detect'
+drivers/input/mouse/psmouse-base.o:psmouse-base.c:(.text+0x1b50): first defined here
+
+Reported-by: Hulk Robot <hulkci@huawei.com>
+Fixes: 55e3d9224b60 ("Input: psmouse - allow disabing certain protocol extensions")
+Signed-off-by: YueHaibing <yuehaibing@huawei.com>
+Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
+Cc: Hui Wang <hui.wang@canonical.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/input/mouse/trackpoint.h |    3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+--- a/drivers/input/mouse/trackpoint.h
++++ b/drivers/input/mouse/trackpoint.h
+@@ -153,7 +153,8 @@ struct trackpoint_data
+ #ifdef CONFIG_MOUSE_PS2_TRACKPOINT
+ int trackpoint_detect(struct psmouse *psmouse, bool set_properties);
+ #else
+-inline int trackpoint_detect(struct psmouse *psmouse, bool set_properties)
++static inline int trackpoint_detect(struct psmouse *psmouse,
++                                  bool set_properties)
+ {
+       return -ENOSYS;
+ }
index deaed90ad838088db2bd3caecf6e8da0ac9e5504..2fc6cffb5c8d3deb50b31e6c3d7bef9208ffc956 100644 (file)
@@ -64,3 +64,4 @@ usb-serial-option-add-motorola-modem-uarts.patch
 backport-minimal-compiler_attributes.h-to-support-gc.patch
 include-linux-module.h-copy-__init-__exit-attrs-to-i.patch
 arm64-compat-allow-single-byte-watchpoints-on-all-addresses.patch
+input-psmouse-fix-build-error-of-multiple-definition.patch