From: Mika Westerberg Date: Thu, 16 Jan 2014 12:50:55 +0000 (+0200) Subject: spi/pxa2xx: fix compilation warning when !CONFIG_PM_SLEEP X-Git-Tag: v4.14-rc1~8185^2~2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=382cebb02a68764a51a412b8affccd325059d0a5;p=platform%2Fkernel%2Flinux-rpi.git 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 Signed-off-by: Mark Brown --- diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c index cb0e1f1..7d98a64 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) dev_err(&pdev->dev, "shutdown failed with %d\n", status); } -#ifdef CONFIG_PM +#ifdef CONFIG_PM_SLEEP static int pxa2xx_spi_suspend(struct device *dev) { struct driver_data *drv_data = dev_get_drvdata(dev);