aboutsummaryrefslogtreecommitdiff
path: root/drivers/mmc/core
diff options
context:
space:
mode:
authorPierre Ossman <drzeus@drzeus.cx>2007-07-24 21:53:43 +0200
committerPierre Ossman <drzeus@drzeus.cx>2007-09-23 09:15:22 +0200
commit8fdd8521dcc9d89072f3ca5dca444560bcea39c6 (patch)
tree0e7ca48dc77e5e8fe52a57cbaeb054a3db07fab1 /drivers/mmc/core
parentbe0192aae1aed3fbf172e3f9a22ec75392c1b175 (diff)
mmc: add missing printk levels
Some printk:s were missing an explicit level. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc/core')
-rw-r--r--drivers/mmc/core/mmc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/mmc/core/mmc.c b/drivers/mmc/core/mmc.c
index cdc38b43b79..ba7a847cfd0 100644
--- a/drivers/mmc/core/mmc.c
+++ b/drivers/mmc/core/mmc.c
@@ -212,8 +212,9 @@ static int mmc_read_ext_csd(struct mmc_card *card)
ext_csd_struct = ext_csd[EXT_CSD_REV];
if (ext_csd_struct > 2) {
- printk("%s: unrecognised EXT_CSD structure version %d\n",
- mmc_hostname(card->host), ext_csd_struct);
+ printk(KERN_ERR "%s: unrecognised EXT_CSD structure "
+ "version %d\n", mmc_hostname(card->host),
+ ext_csd_struct);
return -EINVAL;
}