mmc: reduce printing info [1/1]

PD#SWPL-194607

Problem:
multiple logs affect startup time

Solution:
remove unnecessary printing

Verify:
sc2

Change-Id: Iada995b16f968230d841bee69234b17405031964
Signed-off-by: Rong Chen <rong.chen@amlogic.com>
This commit is contained in:
Rong Chen
2024-11-28 11:37:09 +08:00
committed by Wanwei Jiang
parent c89a89f74c
commit 84537f6401
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -480,7 +480,7 @@ void amlmmc_dtb_init(struct mmc_card *card, int *retp)
goto exit_err3;
}
pr_info("%s: register dtb chardev OK", __func__);
pr_debug("%s: register dtb chardev OK", __func__);
goto exit;
exit_err3:
+2 -2
View File
@@ -518,7 +518,7 @@ void emmc_key_init(struct mmc_card *card, int *retp)
pr_info("%s:%d,emmc key check fail\n", __func__, __LINE__);
goto exit_err1;
}
pr_info("emmc key: %s:%d ok.\n", __func__, __LINE__);
pr_debug("emmc key: %s:%d ok.\n", __func__, __LINE__);
auto_attach();
@@ -562,7 +562,7 @@ int32_t emmc_key_read(u8 *buffer,
dst = (unsigned char *)buffer + MAX_EMMC_BLOCK_SIZE;
} while (cnt > 0);
pr_info("%s:%d, read %s\n", __func__, __LINE__, (ret) ? "error" : "ok");
pr_debug("%s:%d, read %s\n", __func__, __LINE__, (ret) ? "error" : "ok");
aml_enable_mmc_cqe(card);
mmc_release_host(card->host);