summaryrefslogtreecommitdiff
path: root/drivers/input/mouse/lifebook.h
diff options
context:
space:
mode:
authorHui Wang <hui.wang@canonical.com>2019-08-20 22:07:01 +0300
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2019-08-21 00:15:36 +0300
commitcfd8579ddc02d8c5024bae7106ba37079653b3d2 (patch)
tree73fd7dcd7a80e03f3e7fdf9c8b1826d91df922d6 /drivers/input/mouse/lifebook.h
parente95656ea15e54d4e6a192d560d84008b53fc1eb5 (diff)
downloadlinux-cfd8579ddc02d8c5024bae7106ba37079653b3d2.tar.xz
Input: psmouse - drop all unneeded functions from mouse headers
Recently we had a building error if we enable the MOUSE_PS2_ALPS while disable the MOUSE_PS2_TRACKPOINT, and was fixed by 49e6979e7e92 ("Input: psmouse - fix build error of multiple definition"). We could improve that fix by dropping all unneeded functions and CONFIG_MOUSE_ guards from the header, it is safe to do that since those functions are not directly called by psmouse-base.c anymore. Signed-off-by: Hui Wang <hui.wang@canonical.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/mouse/lifebook.h')
-rw-r--r--drivers/input/mouse/lifebook.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/drivers/input/mouse/lifebook.h b/drivers/input/mouse/lifebook.h
index 573f2ca1983d..d989cca62dd6 100644
--- a/drivers/input/mouse/lifebook.h
+++ b/drivers/input/mouse/lifebook.h
@@ -8,22 +8,15 @@
#ifndef _LIFEBOOK_H
#define _LIFEBOOK_H
-#ifdef CONFIG_MOUSE_PS2_LIFEBOOK
-void lifebook_module_init(void);
int lifebook_detect(struct psmouse *psmouse, bool set_properties);
int lifebook_init(struct psmouse *psmouse);
+
+#ifdef CONFIG_MOUSE_PS2_LIFEBOOK
+void lifebook_module_init(void);
#else
static inline void lifebook_module_init(void)
{
}
-static inline int lifebook_detect(struct psmouse *psmouse, bool set_properties)
-{
- return -ENOSYS;
-}
-static inline int lifebook_init(struct psmouse *psmouse)
-{
- return -ENOSYS;
-}
#endif
#endif