Module Name: src
Committed By: kiyohara
Date: Thu Feb 18 07:24:17 UTC 2010
Modified Files:
src/sys/dev/bluetooth: btuart.c
Log Message:
Remove unnecessary line-feed.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sys/dev/bluetooth/btuart.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/bluetooth/btuart.c
diff -u src/sys/dev/bluetooth/btuart.c:1.23 src/sys/dev/bluetooth/btuart.c:1.24
--- src/sys/dev/bluetooth/btuart.c:1.23 Tue May 12 12:10:46 2009
+++ src/sys/dev/bluetooth/btuart.c Thu Feb 18 07:24:16 2010
@@ -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 @@
/* 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 @@
/* 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) */
}