From: Balaji T K Date: Thu, 25 Oct 2012 15:58:35 +0000 (+0530) Subject: mmc: omap_hsmmc: remove warning message for debounce clock X-Git-Tag: v3.8-rc1~190^2~56 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=f50725129a2e1aae441d5af2919ed5219386eefc;p=~emulex%2Finfiniband.git 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 Reported-by: Russell King Acked-by: Tony Lindgren Signed-off-by: Chris Ball --- diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c index 0b5e7ab92ef..5434fd8e088 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) * MMC can still work without debounce clock. */ if (IS_ERR(host->dbclk)) { - dev_warn(mmc_dev(host->mmc), "Failed to get debounce clk\n"); host->dbclk = NULL; } else if (clk_prepare_enable(host->dbclk) != 0) { dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");