diff options
author | Todd Poynor <toddpoynor@google.com> | 2010-12-23 12:55:08 -0800 |
---|---|---|
committer | Todd Poynor <toddpoynor@google.com> | 2010-12-23 12:56:47 -0800 |
commit | d90df01c187d268aa3537f01d91d20a9dbe22f5b (patch) | |
tree | 061f702aafc269a0a07ed44cef9db38c707f0eb7 | |
parent | 3f29a8834975956ed5590959bfced00cb9bd03ed (diff) |
tegra SDHCI: Make debugging printk properly a debugging printk
Tegra SDMMC clock enable/disable seems to be working well enough,
don't need this extra spew.
Change-Id: I8bce2a6b26a72b9b3af2eec873bca0177f149ca3
Signed-off-by: Todd Poynor <toddpoynor@google.com>
-rw-r--r-- | drivers/mmc/host/sdhci-tegra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-tegra.c b/drivers/mmc/host/sdhci-tegra.c index 2cb479987b8d..153bd9a16dd9 100644 --- a/drivers/mmc/host/sdhci-tegra.c +++ b/drivers/mmc/host/sdhci-tegra.c @@ -67,7 +67,7 @@ static void tegra_sdhci_enable_clock(struct tegra_sdhci_host *host, int enable) static void tegra_sdhci_set_clock(struct sdhci_host *sdhci, unsigned int clock) { struct tegra_sdhci_host *host = sdhci_priv(sdhci); - pr_info("tegra sdhci clock %s %u enabled=%d\n", + pr_debug("tegra sdhci clock %s %u enabled=%d\n", mmc_hostname(sdhci->mmc), clock, host->clk_enabled); tegra_sdhci_enable_clock(host, clock); |