summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorisaki <isaki@NetBSD.org>2019-06-10 13:28:08 +0000
committerisaki <isaki@NetBSD.org>2019-06-10 13:28:08 +0000
commit629269264d849bccacda50be7f526517af601f43 (patch)
tree48b54c4dbbf251c7a5e34b7967b696eb3a9263cc /sys/dev
parent44b734d061c1466a841f0679a501de5c185621b5 (diff)
Add missing newline to some error messages.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/audio/audio.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/audio/audio.c b/sys/dev/audio/audio.c
index 51de4a95c5c..60d4214590f 100644
--- a/sys/dev/audio/audio.c
+++ b/sys/dev/audio/audio.c
@@ -1,4 +1,4 @@
-/* $NetBSD: audio.c,v 1.14 2019/06/10 13:12:51 isaki Exp $ */
+/* $NetBSD: audio.c,v 1.15 2019/06/10 13:28:08 isaki Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -142,7 +142,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.14 2019/06/10 13:12:51 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.15 2019/06/10 13:28:08 isaki Exp $");
#ifdef _KERNEL_OPT
#include "audio.h"
@@ -5205,7 +5205,7 @@ audio_pmixer_output(struct audio_softc *sc)
start, end, blksize, audio_pintr, sc, &params);
if (error) {
device_printf(sc->sc_dev,
- "trigger_output failed with %d", error);
+ "trigger_output failed with %d\n", error);
return;
}
}
@@ -5217,7 +5217,7 @@ audio_pmixer_output(struct audio_softc *sc)
start, blksize, audio_pintr, sc);
if (error) {
device_printf(sc->sc_dev,
- "start_output failed with %d", error);
+ "start_output failed with %d\n", error);
return;
}
}
@@ -5476,7 +5476,7 @@ audio_rmixer_input(struct audio_softc *sc)
start, end, blksize, audio_rintr, sc, &params);
if (error) {
device_printf(sc->sc_dev,
- "trigger_input failed with %d", error);
+ "trigger_input failed with %d\n", error);
return;
}
}
@@ -5488,7 +5488,7 @@ audio_rmixer_input(struct audio_softc *sc)
start, blksize, audio_rintr, sc);
if (error) {
device_printf(sc->sc_dev,
- "start_input failed with %d", error);
+ "start_input failed with %d\n", error);
return;
}
}