Input: mcs5000_ts - protect PM functions with CONFIG_PM_SLEEP
authorFabio Estevam <fabio.estevam@freescale.com>
Wed, 30 Jul 2014 18:34:31 +0000 (11:34 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Thu, 31 Jul 2014 05:52:55 +0000 (22:52 -0700)
commitf1e31b02b95a70c0770bf91ec440ae242432f4b7
tree9ce2b55256e15de27c0dad9e0c58ab56cb897604
parenta1cd3fd09a9b7de710d705127aa616946b567d72
Input: mcs5000_ts - protect PM functions with CONFIG_PM_SLEEP

When a kernel has CONFIG_PM=y and CONFIG_PM_SLEEP=n the following warnings are
seen:
drivers/input/touchscreen/mcs5000_ts.c:252:12: warning: 'mcs5000_ts_suspend' defined but not used [-Wunused-function]
 static int mcs5000_ts_suspend(struct device *dev)
            ^
drivers/input/touchscreen/mcs5000_ts.c:262:12: warning: 'mcs5000_ts_resume' defined but not used [-Wunused-function]
 static int mcs5000_ts_resume(struct device *dev)

Protect the suspend/resume functions with CONFIG_PM_SLEEP in order to fix these
build warnings.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/touchscreen/mcs5000_ts.c