summaryrefslogtreecommitdiffstats
path: root/drivers/input/input.c
diff options
context:
space:
mode:
authorAndrew Morton2009-10-02 00:43:55 +0200
committerLinus Torvalds2009-10-02 01:11:11 +0200
commit1c4115e595dec42aa0e81ba47ef46e35b34ed428 (patch)
tree89f61afcc135325d07f40a3bd2555d28c98a51a9 /drivers/input/input.c
parentmodule: fix up CONFIG_KALLSYMS=n build. (diff)
downloadkernel-qcow2-linux-1c4115e595dec42aa0e81ba47ef46e35b34ed428.tar.gz
kernel-qcow2-linux-1c4115e595dec42aa0e81ba47ef46e35b34ed428.tar.xz
kernel-qcow2-linux-1c4115e595dec42aa0e81ba47ef46e35b34ed428.zip
drivers/input/input.c: fix CONFIG_PM=n warning
drivers/input/input.c:1277: warning: 'input_dev_reset' defined but not used Acked-by: Dmitry Torokhov <dtor@mail.ru> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/input/input.c')
-rw-r--r--drivers/input/input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/input.c b/drivers/input/input.c
index e828aab7dace..16ec33f27c5d 100644
--- a/drivers/input/input.c
+++ b/drivers/input/input.c
@@ -1273,6 +1273,7 @@ static int input_dev_uevent(struct device *device, struct kobj_uevent_env *env)
} \
} while (0)
+#ifdef CONFIG_PM
static void input_dev_reset(struct input_dev *dev, bool activate)
{
if (!dev->event)
@@ -1287,7 +1288,6 @@ static void input_dev_reset(struct input_dev *dev, bool activate)
}
}
-#ifdef CONFIG_PM
static int input_dev_suspend(struct device *dev)
{
struct input_dev *input_dev = to_input_dev(dev);