diff options
author | Colin Ian King <colin.king@canonical.com> | 2016-09-16 11:09:25 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2016-09-16 13:13:44 +0200 |
commit | 67956ed1000faf7ce3274e04c582131f1e308d06 (patch) | |
tree | b108e02f66967c10beecde79fbf4178c8122d0cb /sound/pci | |
parent | 46e860f76804f86ac6062e9bb0d6dbea47f23899 (diff) | |
download | blackbird-op-linux-67956ed1000faf7ce3274e04c582131f1e308d06.tar.gz blackbird-op-linux-67956ed1000faf7ce3274e04c582131f1e308d06.zip |
ALSA: au88x0: Add missing \n to end of dev_err message
Trival fix, the dev_err message is missing a \n so add it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/au88x0/au88x0_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/au88x0/au88x0_core.c b/sound/pci/au88x0/au88x0_core.c index d3125c169684..e1af24f87566 100644 --- a/sound/pci/au88x0/au88x0_core.c +++ b/sound/pci/au88x0/au88x0_core.c @@ -1043,7 +1043,7 @@ static void vortex_fifo_init(vortex_t * vortex) for (x = NR_ADB - 1; x >= 0; x--) { hwwrite(vortex->mmio, addr, (FIFO_U0 | FIFO_U1)); if (hwread(vortex->mmio, addr) != (FIFO_U0 | FIFO_U1)) - dev_err(vortex->card->dev, "bad adb fifo reset!"); + dev_err(vortex->card->dev, "bad adb fifo reset!\n"); vortex_fifo_clearadbdata(vortex, x, FIFO_SIZE); addr -= 4; } |