diff options
author | Arnaud Patard <arnaud.patard@rtp-net.org> | 2007-05-01 16:18:36 +0200 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2007-05-01 16:18:36 +0200 |
commit | 3647afcec11f2fcfc6269e513ff97fec1374d1b8 (patch) | |
tree | be3d00128311eb4df39e06155d3d997b262f6088 /drivers/mmc | |
parent | d97956f86bec90ab131b9f1af60c0e686198d45e (diff) | |
download | linux-3647afcec11f2fcfc6269e513ff97fec1374d1b8.tar.bz2 |
mmc-omap: add missing '\n'
This patch add a missing '\n' at the end of the 'cover is open' string
in mmc_omap_switch_handler().
Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/omap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/omap.c b/drivers/mmc/host/omap.c index e851384e51f4..1b232c6dd016 100644 --- a/drivers/mmc/host/omap.c +++ b/drivers/mmc/host/omap.c @@ -604,7 +604,7 @@ static void mmc_omap_switch_handler(struct work_struct *work) } if (mmc_omap_cover_is_open(host)) { if (!complained) { - dev_info(mmc_dev(host->mmc), "cover is open"); + dev_info(mmc_dev(host->mmc), "cover is open\n"); complained = 1; } if (mmc_omap_enable_poll) |