summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorHuang Chao <chao7.huang@samsung.com>2014-07-05 09:34:19 +0800
committerHuang Chao <chao7.huang@samsung.com>2014-07-10 09:10:28 +0800
commit9594049ba923608e763dfa2dc40d1911dcf793c8 (patch)
treee3fe87a733a8cc8475cb4a241769536c3e3bacd4 /sound
parentfc9b8dcb1c8f7b91008c6d9c8240e357b521fe21 (diff)
downloadlinux-3.10-9594049ba923608e763dfa2dc40d1911dcf793c8.tar.gz
linux-3.10-9594049ba923608e763dfa2dc40d1911dcf793c8.tar.bz2
linux-3.10-9594049ba923608e763dfa2dc40d1911dcf793c8.zip
ASoC: samsung: i2s: Add missing newlines in error messsages
This is trivial, but generally speaking, linefeed should be the last character of error messages. Change-Id: I49e595989942d8862f25b6348979ddee6645ea51 Signed-off-by: Huang Chao <chao7.huang@samsung.com>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/samsung/i2s.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/samsung/i2s.c b/sound/soc/samsung/i2s.c
index d80121e46d3..079eb63d586 100644
--- a/sound/soc/samsung/i2s.c
+++ b/sound/soc/samsung/i2s.c
@@ -1224,7 +1224,7 @@ static int samsung_i2s_probe(struct platform_device *pdev)
if (of_property_read_u32(np, "samsung,idma-addr",
&idma_addr)) {
if (quirks & QUIRK_SEC_DAI) {
- dev_err(&pdev->dev, "idma address is not specified");
+ dev_err(&pdev->dev, "idma address is not specified\n");
return -EINVAL;
}
}
@@ -1232,7 +1232,7 @@ static int samsung_i2s_probe(struct platform_device *pdev)
idma_irq = irq_of_parse_and_map(np, 0);
if (idma_irq == NO_IRQ) {
if (quirks & QUIRK_SEC_DAI) {
- dev_err(&pdev->dev, "idma irq is not specified");
+ dev_err(&pdev->dev, "idma irq is not specified\n");
return -EINVAL;
}
}