[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1407860069-12706-4-git-send-email-peter.griffin@linaro.org>
Date: Tue, 12 Aug 2014 17:14:27 +0100
From: Peter Griffin <peter.griffin@...aro.org>
To: linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
tgih.jun@...sung.com, jh80.chung@...sung.com, chris@...ntf.net,
ulf.hansson@...aro.org, jarkko.lavinen@...ia.com, balajitk@...com,
baohua@...nel.org, viresh.linux@...il.com,
ian.molton@...ethink.co.uk, maxime.ripard@...e-electrons.com,
linux-mmc@...r.kernel.org, linux-omap@...r.kernel.org,
spear-devel@...t.st.com, linux-tegra@...r.kernel.org,
michal.simek@...inx.com, swarren@...dotorg.org
Cc: peter.griffin@...aro.org, patches@...aro.org, lee.jones@...aro.org
Subject: [PATCH 3/5] mmc: dw_mmc-pltfm: Remove superflous #else condition on CONFIG_PM_SLEEP
As the code is using SIMPLE_DEV_PM_OPS helper, this compiles away to
nothing if CONFIG_PM_SLEEP is disabled. Thus we don't need to #define
the suspend/resume callbacks to NULL.
Signed-off-by: Peter Griffin <peter.griffin@...aro.org>
---
drivers/mmc/host/dw_mmc-pltfm.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/drivers/mmc/host/dw_mmc-pltfm.c b/drivers/mmc/host/dw_mmc-pltfm.c
index d4a47a9..fbcb5a3 100644
--- a/drivers/mmc/host/dw_mmc-pltfm.c
+++ b/drivers/mmc/host/dw_mmc-pltfm.c
@@ -84,9 +84,6 @@ static int dw_mci_pltfm_resume(struct device *dev)
return dw_mci_resume(host);
}
-#else
-#define dw_mci_pltfm_suspend NULL
-#define dw_mci_pltfm_resume NULL
#endif /* CONFIG_PM_SLEEP */
SIMPLE_DEV_PM_OPS(dw_mci_pltfm_pmops, dw_mci_pltfm_suspend, dw_mci_pltfm_resume);
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists