aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorBalaji T K <balajitk@ti.com>2012-10-25 11:58:35 -0400
committerChris Ball <cjb@laptop.org>2012-12-06 13:54:40 -0500
commitf50725129a2e1aae441d5af2919ed5219386eefc (patch)
treee3402e1d3b66545494b016a14627380c20ec0e36 /drivers/mmc
parentd8714e87b62b1c39ae8f3cef9a32121ad1c9a7ae (diff)
mmc: omap_hsmmc: remove warning message for debounce clock
MMC debounce clock is applicable only for omap2430, warning message gets printed when enable fails for debounce clock. Remove the get debounce clock failure message as it is noisy for other platforms. Signed-off-by: Balaji T K <balajitk@ti.com> Reported-by: Russell King <rmk+kernel@arm.linux.org.uk> Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/host/omap_hsmmc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c
index 0b5e7ab92ef1..5434fd8e088a 100644
--- a/drivers/mmc/host/omap_hsmmc.c
+++ b/drivers/mmc/host/omap_hsmmc.c
@@ -1826,7 +1826,6 @@ static int __devinit omap_hsmmc_probe(struct platform_device *pdev)
1826 * MMC can still work without debounce clock. 1826 * MMC can still work without debounce clock.
1827 */ 1827 */
1828 if (IS_ERR(host->dbclk)) { 1828 if (IS_ERR(host->dbclk)) {
1829 dev_warn(mmc_dev(host->mmc), "Failed to get debounce clk\n");
1830 host->dbclk = NULL; 1829 host->dbclk = NULL;
1831 } else if (clk_prepare_enable(host->dbclk) != 0) { 1830 } else if (clk_prepare_enable(host->dbclk) != 0) {
1832 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n"); 1831 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");