mmc: core: turn the pr_info under CONFIG_MMC_DEBUG into pr_debug
authorShawn Lin <shawn.lin@rock-chips.com>
Wed, 19 Jul 2017 07:55:46 +0000 (15:55 +0800)
committerUlf Hansson <ulf.hansson@linaro.org>
Wed, 30 Aug 2017 12:01:34 +0000 (14:01 +0200)
There are lots of debug message in core.c which use pr_debug
for better dynamic log level control. So it doesn't make sense
for those print to still keep working only under CONFIG_MMC_DEBUG.

Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/core/core.c

index 634f9ca..731aa9f 100644 (file)
@@ -2436,10 +2436,9 @@ static int mmc_rescan_try_freq(struct mmc_host *host, unsigned freq)
 {
        host->f_init = freq;
 
-#ifdef CONFIG_MMC_DEBUG
-       pr_info("%s: %s: trying to init card at %u Hz\n",
+       pr_debug("%s: %s: trying to init card at %u Hz\n",
                mmc_hostname(host), __func__, host->f_init);
-#endif
+
        mmc_power_up(host, host->ocr_avail);
 
        /*
@@ -2670,9 +2669,7 @@ int mmc_power_save_host(struct mmc_host *host)
 {
        int ret = 0;
 
-#ifdef CONFIG_MMC_DEBUG
-       pr_info("%s: %s: powering down\n", mmc_hostname(host), __func__);
-#endif
+       pr_debug("%s: %s: powering down\n", mmc_hostname(host), __func__);
 
        mmc_bus_get(host);
 
@@ -2696,9 +2693,7 @@ int mmc_power_restore_host(struct mmc_host *host)
 {
        int ret;
 
-#ifdef CONFIG_MMC_DEBUG
-       pr_info("%s: %s: powering up\n", mmc_hostname(host), __func__);
-#endif
+       pr_debug("%s: %s: powering up\n", mmc_hostname(host), __func__);
 
        mmc_bus_get(host);