summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRandy Dunlap2011-09-09 19:15:29 +0200
committerDmitry Torokhov2011-09-09 19:16:21 +0200
commitb6b1e927cec6b472578402f07f5befa79a96818d (patch)
tree8019d70a88bcc3b1dc69b01312bd8e02ca893df0
parentInput: tegra-kbc - tighten locking (diff)
downloadkernel-qcow2-linux-b6b1e927cec6b472578402f07f5befa79a96818d.tar.gz
kernel-qcow2-linux-b6b1e927cec6b472578402f07f5befa79a96818d.tar.xz
kernel-qcow2-linux-b6b1e927cec6b472578402f07f5befa79a96818d.zip
Input: twl6040-vibra - fix compiler warning
Fix warning from Geert's build summary emails by changing "if" to "ifdef". Thsi should fix the following: drivers/input/misc/twl6040-vibra.c:231:5: warning: "CONFIG_PM_SLEEP" is not defined Builds cleanly with CONFIG_PM_SLEEP enabled or disabled. Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
-rw-r--r--drivers/input/misc/twl6040-vibra.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/misc/twl6040-vibra.c b/drivers/input/misc/twl6040-vibra.c
index c43002e7ec72..23855e12a30b 100644
--- a/drivers/input/misc/twl6040-vibra.c
+++ b/drivers/input/misc/twl6040-vibra.c
@@ -228,7 +228,7 @@ static void twl6040_vibra_close(struct input_dev *input)
mutex_unlock(&info->mutex);
}
-#if CONFIG_PM_SLEEP
+#ifdef CONFIG_PM_SLEEP
static int twl6040_vibra_suspend(struct device *dev)
{
struct platform_device *pdev = to_platform_device(dev);