ASoC: samsung: i2s: Add missing newlines in error messsages
authorHuang Chao <chao7.huang@samsung.com>
Sat, 5 Jul 2014 01:34:19 +0000 (09:34 +0800)
committerChanho Park <chanho61.park@samsung.com>
Tue, 18 Nov 2014 03:00:01 +0000 (12:00 +0900)
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>
sound/soc/samsung/i2s.c

index d80121e..079eb63 100644 (file)
@@ -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;
                        }
                }