Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb Use lower case for USBHIST messages.



details:   https://anonhg.NetBSD.org/src/rev/bc3e69c796db
branches:  trunk
changeset: 332331:bc3e69c796db
user:      skrll <skrll%NetBSD.org@localhost>
date:      Tue Sep 16 10:27:53 2014 +0000

description:
Use lower case for USBHIST messages.

diffstat:

 sys/dev/usb/ehci.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (35 lines):

diff -r e6993999b518 -r bc3e69c796db sys/dev/usb/ehci.c
--- a/sys/dev/usb/ehci.c        Tue Sep 16 09:42:47 2014 +0000
+++ b/sys/dev/usb/ehci.c        Tue Sep 16 10:27:53 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ehci.c,v 1.232 2014/09/13 18:36:45 skrll Exp $ */
+/*     $NetBSD: ehci.c,v 1.233 2014/09/16 10:27:53 skrll Exp $ */
 
 /*
  * Copyright (c) 2004-2012 The NetBSD Foundation, Inc.
@@ -53,7 +53,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.232 2014/09/13 18:36:45 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.233 2014/09/16 10:27:53 skrll Exp $");
 
 #include "ohci.h"
 #include "uhci.h"
@@ -1082,14 +1082,14 @@
                   EHCI_QTD_GET_CERR(status), EHCI_QTD_GET_PID(status),
                   status, 0);
                USBHIST_LOG(ehcidebug,
-                   "ACTIVE =%d HALTED=%d BUFERR=%d BABBLE=%d",
+                   "active =%d halted=%d buferr=%d babble=%d",
                    status & EHCI_QTD_ACTIVE ? 1 : 0,
                    status & EHCI_QTD_HALTED ? 1 : 0,
                    status & EHCI_QTD_BUFERR ? 1 : 0,
                    status & EHCI_QTD_BABBLE ? 1 : 0);
 
                USBHIST_LOG(ehcidebug,
-                   "XACTERR=%d MISSED=%d SPLIT =%d PING  =%d",
+                   "xacterr=%d missed=%d split =%d ping  =%d",
                    status & EHCI_QTD_XACTERR ? 1 : 0,
                    status & EHCI_QTD_MISSEDMICRO ? 1 : 0,
                    status & EHCI_QTD_SPLITXSTATE ? 1 : 0,



Home | Main Index | Thread Index | Old Index