summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorHuang Chao <chao7.huang@samsung.com>2014-07-05 09:34:19 +0800
committerChanho Park <chanho61.park@samsung.com>2014-11-18 12:00:01 +0900
commit364851829ca3f15ebbceb0c0b533947c1de26c59 (patch)
treedc6e0c08871aa80dd4ad457b402d48e914764e3b /sound
parent008376f4ff010f4825d551543662344877414053 (diff)
downloadlinux-3.10-364851829ca3f15ebbceb0c0b533947c1de26c59.tar.gz
linux-3.10-364851829ca3f15ebbceb0c0b533947c1de26c59.tar.bz2
linux-3.10-364851829ca3f15ebbceb0c0b533947c1de26c59.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;
}
}