summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorkiyohara <kiyohara@NetBSD.org>2010-02-18 07:24:16 +0000
committerkiyohara <kiyohara@NetBSD.org>2010-02-18 07:24:16 +0000
commit23849e1fa6930fc8e6e53be9b2b871e1876670d7 (patch)
treea0ea6396fc7e6d67c4e47e892d8f50714697d740 /sys/dev
parente386b4ea79785a4f4fa28703d2bc09dd84add9b9 (diff)
Remove unnecessary line-feed.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/bluetooth/btuart.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/dev/bluetooth/btuart.c b/sys/dev/bluetooth/btuart.c
index e98d16a4aa0..116948653fc 100644
--- a/sys/dev/bluetooth/btuart.c
+++ b/sys/dev/bluetooth/btuart.c
@@ -1,4 +1,4 @@
-/* $NetBSD: btuart.c,v 1.23 2009/05/12 12:10:46 cegger Exp $ */
+/* $NetBSD: btuart.c,v 1.24 2010/02/18 07:24:16 kiyohara Exp $ */
/*-
* Copyright (c) 2006, 2007 KIYOHARA Takashi
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: btuart.c,v 1.23 2009/05/12 12:10:46 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: btuart.c,v 1.24 2010/02/18 07:24:16 kiyohara Exp $");
#include <sys/param.h>
#include <sys/conf.h>
@@ -351,8 +351,7 @@ btuartinput(int c, struct tty *tp)
/* new packet */
MGETHDR(m, M_DONTWAIT, MT_DATA);
if (m == NULL) {
- aprint_error_dev(sc->sc_dev,
- "out of memory\n");
+ aprint_error_dev(sc->sc_dev, "out of memory\n");
sc->sc_stats.err_rx++;
return 0; /* (lost sync) */
}
@@ -367,8 +366,7 @@ btuartinput(int c, struct tty *tp)
/* extend mbuf */
MGET(m->m_next, M_DONTWAIT, MT_DATA);
if (m->m_next == NULL) {
- aprint_error_dev(sc->sc_dev,
- "out of memory\n");
+ aprint_error_dev(sc->sc_dev, "out of memory\n");
sc->sc_stats.err_rx++;
return 0; /* (lost sync) */
}