diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-04-04 11:25:11 +0530 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2013-04-04 10:18:27 -0400 |
commit | 8e1c4e4d732666ace4c5e0cd122e7217ded910aa (patch) | |
tree | 19c63882b18bf276c063de533aa9acb3298ea6d6 /drivers/mmc | |
parent | f2f942ce4a800b2179a5a5023922517b875a6787 (diff) | |
download | linux-3.10-8e1c4e4d732666ace4c5e0cd122e7217ded910aa.tar.gz linux-3.10-8e1c4e4d732666ace4c5e0cd122e7217ded910aa.tar.bz2 linux-3.10-8e1c4e4d732666ace4c5e0cd122e7217ded910aa.zip |
mmc: dw_mmc: Use pr_info instead of printk
pr_info(... is preferred to printk(KERN_INFO ...
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
Acked-by: Seungwon Jeon <tgih.jun@samsung.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/dw_mmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c index a63766a0bfc..45d921650d4 100644 --- a/drivers/mmc/host/dw_mmc.c +++ b/drivers/mmc/host/dw_mmc.c @@ -2516,7 +2516,7 @@ EXPORT_SYMBOL(dw_mci_resume); static int __init dw_mci_init(void) { - printk(KERN_INFO "Synopsys Designware Multimedia Card Interface Driver"); + pr_info("Synopsys Designware Multimedia Card Interface Driver\n"); return 0; } |