Commit 7d414b71 authored by Roman Tereshonkov's avatar Roman Tereshonkov Committed by Tony Lindgren

Tiny fix. No comma after KERN_INFO.

Signed-off-by: default avatarRoman Tereshonkov <roman.tereshonkov@nokia.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 587841da
...@@ -120,7 +120,7 @@ static int __init omap_sdti_init(void) ...@@ -120,7 +120,7 @@ static int __init omap_sdti_init(void)
i = sti_readl(SDTI_REVISION); i = sti_readl(SDTI_REVISION);
snprintf(buf, sizeof(buf), "OMAP SDTI support loaded (HW v%u.%u)\n", snprintf(buf, sizeof(buf), "OMAP SDTI support loaded (HW v%u.%u)\n",
(i >> 4) & 0x0f, i & 0x0f); (i >> 4) & 0x0f, i & 0x0f);
printk(KERN_INFO, "%s", buf); printk(KERN_INFO "%s", buf);
omap_sti_channel_write_trace(strlen(buf), 0xc3, buf, 239); omap_sti_channel_write_trace(strlen(buf), 0xc3, buf, 239);
return 0; return 0;
......
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