Commit 84b04b5f authored by Felipe Balbi's avatar Felipe Balbi Committed by Tony Lindgren

OMAP: MMC: Add several missing line breaks.

Misc clean up in omap_hsmmc.c to beautify debugging output.
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: default avatarEduardo Valentin <eduardo.valentin@indt.org.br>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 6df9d999
...@@ -146,7 +146,7 @@ static void omap_mmc_stop_clock(struct mmc_omap_host *host) ...@@ -146,7 +146,7 @@ static void omap_mmc_stop_clock(struct mmc_omap_host *host)
OMAP_HSMMC_WRITE(host->base, SYSCTL, OMAP_HSMMC_WRITE(host->base, SYSCTL,
OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN); OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0) if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stoped"); dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stoped\n");
} }
/* /*
...@@ -401,7 +401,7 @@ static int omap_mmc_switch_opcond(struct mmc_omap_host *host, int vdd) ...@@ -401,7 +401,7 @@ static int omap_mmc_switch_opcond(struct mmc_omap_host *host, int vdd)
return 0; return 0;
err: err:
dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage \n"); dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
return ret; return ret;
} }
...@@ -763,11 +763,11 @@ static int __init omap_mmc_probe(struct platform_device *pdev) ...@@ -763,11 +763,11 @@ static int __init omap_mmc_probe(struct platform_device *pdev)
* MMC can still work without debounce clock. * MMC can still work without debounce clock.
*/ */
if (IS_ERR(host->dbclk)) if (IS_ERR(host->dbclk))
dev_dbg(mmc_dev(host->mmc), "Failed to get debounce clock \n"); dev_dbg(mmc_dev(host->mmc), "Failed to get debounce clock\n");
else else
if (clk_enable(host->dbclk) != 0) if (clk_enable(host->dbclk) != 0)
dev_dbg(mmc_dev(host->mmc), "Enabling debounce" dev_dbg(mmc_dev(host->mmc), "Enabling debounce"
"clk failed\n"); " clk failed\n");
else else
host->dbclk_enabled = 1; host->dbclk_enabled = 1;
...@@ -796,7 +796,7 @@ static int __init omap_mmc_probe(struct platform_device *pdev) ...@@ -796,7 +796,7 @@ static int __init omap_mmc_probe(struct platform_device *pdev)
ret = request_irq(host->irq, mmc_omap_irq, IRQF_DISABLED, pdev->name, ret = request_irq(host->irq, mmc_omap_irq, IRQF_DISABLED, pdev->name,
host); host);
if (ret) { if (ret) {
dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ"); dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
goto irq_err; goto irq_err;
} }
...@@ -837,7 +837,7 @@ err: ...@@ -837,7 +837,7 @@ err:
return ret; return ret;
irq_err: irq_err:
dev_dbg(mmc_dev(host->mmc), "Unable to configure MMC IRQs"); dev_dbg(mmc_dev(host->mmc), "Unable to configure MMC IRQs\n");
clk_disable(host->fclk); clk_disable(host->fclk);
clk_disable(host->iclk); clk_disable(host->iclk);
clk_put(host->fclk); clk_put(host->fclk);
...@@ -900,7 +900,7 @@ static int omap_mmc_suspend(struct platform_device *pdev, pm_message_t state) ...@@ -900,7 +900,7 @@ static int omap_mmc_suspend(struct platform_device *pdev, pm_message_t state)
if (ret) if (ret)
dev_dbg(mmc_dev(host->mmc), dev_dbg(mmc_dev(host->mmc),
"Unable to handle MMC board" "Unable to handle MMC board"
"level suspend\n"); " level suspend\n");
if (!(OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET)) { if (!(OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET)) {
OMAP_HSMMC_WRITE(host->base, HCTL, OMAP_HSMMC_WRITE(host->base, HCTL,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment