Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1485166
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] ALSA: hdac: add missing \n to end of dev_err messages |
| Date | 2016-09-16 18:40 +0200 |
| Message-ID | <si4lc-7e8-21@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From: Colin Ian King <colin.king@canonical.com>
Trival fix, some dev_err messages are missing a \n, so add it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
sound/hda/ext/hdac_ext_stream.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/sound/hda/ext/hdac_ext_stream.c b/sound/hda/ext/hdac_ext_stream.c
index 2441273..3be051a 100644
--- a/sound/hda/ext/hdac_ext_stream.c
+++ b/sound/hda/ext/hdac_ext_stream.c
@@ -424,7 +424,7 @@ void snd_hdac_ext_stream_spbcap_enable(struct hdac_ext_bus *ebus,
struct hdac_bus *bus = &ebus->bus;
if (!bus->spbcap) {
- dev_err(bus->dev, "Address of SPB capability is NULL");
+ dev_err(bus->dev, "Address of SPB capability is NULL\n");
return;
}
@@ -453,7 +453,7 @@ int snd_hdac_ext_stream_set_spib(struct hdac_ext_bus *ebus,
struct hdac_bus *bus = &ebus->bus;
if (!bus->spbcap) {
- dev_err(bus->dev, "Address of SPB capability is NULL");
+ dev_err(bus->dev, "Address of SPB capability is NULL\n");
return -EINVAL;
}
@@ -476,7 +476,7 @@ int snd_hdac_ext_stream_get_spbmaxfifo(struct hdac_ext_bus *ebus,
struct hdac_bus *bus = &ebus->bus;
if (!bus->spbcap) {
- dev_err(bus->dev, "Address of SPB capability is NULL");
+ dev_err(bus->dev, "Address of SPB capability is NULL\n");
return -EINVAL;
}
@@ -516,7 +516,7 @@ void snd_hdac_ext_stream_drsm_enable(struct hdac_ext_bus *ebus,
struct hdac_bus *bus = &ebus->bus;
if (!bus->drsmcap) {
- dev_err(bus->dev, "Address of DRSM capability is NULL");
+ dev_err(bus->dev, "Address of DRSM capability is NULL\n");
return;
}
@@ -545,7 +545,7 @@ int snd_hdac_ext_stream_set_dpibr(struct hdac_ext_bus *ebus,
struct hdac_bus *bus = &ebus->bus;
if (!bus->drsmcap) {
- dev_err(bus->dev, "Address of DRSM capability is NULL");
+ dev_err(bus->dev, "Address of DRSM capability is NULL\n");
return -EINVAL;
}
--
2.9.3
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] ALSA: hdac: add missing \n to end of dev_err messages Colin King <colin.king@canonical.com> - 2016-09-16 18:40 +0200 Re: [PATCH] ALSA: hdac: add missing \n to end of dev_err messages Takashi Iwai <tiwai@suse.de> - 2016-09-16 19:30 +0200
csiph-web