Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/bluetooth Remove unnecessary line-feed.
details: https://anonhg.NetBSD.org/src/rev/2505d2d02221
branches: trunk
changeset: 752178:2505d2d02221
user: kiyohara <kiyohara%NetBSD.org@localhost>
date: Thu Feb 18 07:24:16 2010 +0000
description:
Remove unnecessary line-feed.
diffstat:
sys/dev/bluetooth/btuart.c | 10 ++++------
1 files changed, 4 insertions(+), 6 deletions(-)
diffs (38 lines):
diff -r 97af455d5968 -r 2505d2d02221 sys/dev/bluetooth/btuart.c
--- a/sys/dev/bluetooth/btuart.c Thu Feb 18 06:57:17 2010 +0000
+++ b/sys/dev/bluetooth/btuart.c Thu Feb 18 07:24:16 2010 +0000
@@ -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) */
}
Home |
Main Index |
Thread Index |
Old Index