aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMika Westerberg <mika.westerberg@linux.intel.com>2014-01-16 07:50:55 -0500
committerMark Brown <broonie@linaro.org>2014-01-16 09:07:48 -0500
commit382cebb02a68764a51a412b8affccd325059d0a5 (patch)
treeecef6fc19946dbc98dc5be9dc0d906be6b8027c6
parent6ce4eac1f600b34f2f7f58f9cd8f0503d79e42ae (diff)
spi/pxa2xx: fix compilation warning when !CONFIG_PM_SLEEP
CONFIG_PM will be set if either or both CONFIG_PM_SLEEP and CONFIG_PM_RUNTIME is set. Compiling the driver with !CONFIG_PM_SLEEP causes following compilation warning: drivers/spi/spi-pxa2xx.c:1270:12: warning: ‘pxa2xx_spi_suspend’ defined but not used [-Wunused-function] Fix this by using CONFIG_PM_SLEEP instead. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r--drivers/spi/spi-pxa2xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c
index cb0e1f1137ad..7d98a64e6a09 100644
--- a/drivers/spi/spi-pxa2xx.c
+++ b/drivers/spi/spi-pxa2xx.c
@@ -1264,7 +1264,7 @@ static void pxa2xx_spi_shutdown(struct platform_device *pdev)
1264 dev_err(&pdev->dev, "shutdown failed with %d\n", status); 1264 dev_err(&pdev->dev, "shutdown failed with %d\n", status);
1265} 1265}
1266 1266
1267#ifdef CONFIG_PM 1267#ifdef CONFIG_PM_SLEEP
1268static int pxa2xx_spi_suspend(struct device *dev) 1268static int pxa2xx_spi_suspend(struct device *dev)
1269{ 1269{
1270 struct driver_data *drv_data = dev_get_drvdata(dev); 1270 struct driver_data *drv_data = dev_get_drvdata(dev);