Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/usb Since the aprint_normal_dev() several lines abov...
details: https://anonhg.NetBSD.org/src/rev/89b855a641f7
branches: trunk
changeset: 748199:89b855a641f7
user: enami <enami%NetBSD.org@localhost>
date: Fri Oct 16 00:45:26 2009 +0000
description:
Since the aprint_normal_dev() several lines above prints a space
after the device name, no need to prepend the space here.
diffstat:
sys/dev/usb/ohci.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 917c728599ac -r 89b855a641f7 sys/dev/usb/ohci.c
--- a/sys/dev/usb/ohci.c Fri Oct 16 00:27:07 2009 +0000
+++ b/sys/dev/usb/ohci.c Fri Oct 16 00:45:26 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ohci.c,v 1.199 2009/09/01 21:46:07 jmcneill Exp $ */
+/* $NetBSD: ohci.c,v 1.200 2009/10/16 00:45:26 enami Exp $ */
/* $FreeBSD: src/sys/dev/usb/ohci.c,v 1.22 1999/11/17 22:33:40 n_hibma Exp $ */
/*
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.199 2009/09/01 21:46:07 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.200 2009/10/16 00:45:26 enami Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -701,7 +701,7 @@
SIMPLEQ_INIT(&sc->sc_free_xfers);
rev = OREAD4(sc, OHCI_REVISION);
- aprint_normal(" OHCI version %d.%d%s\n",
+ aprint_normal("OHCI version %d.%d%s\n",
OHCI_REV_HI(rev), OHCI_REV_LO(rev),
OHCI_REV_LEGACY(rev) ? ", legacy support" : "");
Home |
Main Index |
Thread Index |
Old Index