Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/usb Improve a DIAGNOSTIC so it doesn't confuse peopl...



details:   https://anonhg.NetBSD.org/src/rev/db58b4421df7
branches:  trunk
changeset: 784210:db58b4421df7
user:      skrll <skrll%NetBSD.org@localhost>
date:      Tue Jan 22 08:33:18 2013 +0000

description:
Improve a DIAGNOSTIC so it doesn't confuse people who need more coffee,
e.g. me.

diffstat:

 sys/dev/usb/usbdi.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 91c5454f9eb3 -r db58b4421df7 sys/dev/usb/usbdi.c
--- a/sys/dev/usb/usbdi.c       Tue Jan 22 06:24:11 2013 +0000
+++ b/sys/dev/usb/usbdi.c       Tue Jan 22 08:33:18 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: usbdi.c,v 1.146 2013/01/19 15:10:05 skrll Exp $        */
+/*     $NetBSD: usbdi.c,v 1.147 2013/01/22 08:33:18 skrll Exp $        */
 
 /*
  * Copyright (c) 1998, 2012 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: usbdi.c,v 1.146 2013/01/19 15:10:05 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: usbdi.c,v 1.147 2013/01/22 08:33:18 skrll Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_compat_netbsd.h"
@@ -798,7 +798,7 @@
 
 #ifdef DIAGNOSTIC
        if (xfer->busy_free != XFER_ONQU) {
-               printf("usb_transfer_complete: xfer=%p not busy 0x%08x\n",
+               printf("usb_transfer_complete: xfer=%p not queued 0x%08x\n",
                       xfer, xfer->busy_free);
        }
 #endif



Home | Main Index | Thread Index | Old Index