diff options
author | joe <joe@FreeBSD.org> | 2002-04-02 10:47:01 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2002-04-02 10:47:01 +0000 |
commit | ebb399189086c385d2a513faa20eb99ec7e9d0a1 (patch) | |
tree | cb3b6293d5a74e560ec29c23798b11e658d58759 /sys | |
parent | 803be75ab678dcf2321078135c7e2f5c7069dabb (diff) | |
download | FreeBSD-src-ebb399189086c385d2a513faa20eb99ec7e9d0a1.zip FreeBSD-src-ebb399189086c385d2a513faa20eb99ec7e9d0a1.tar.gz |
MFNetBSD:
revision 1.54
date: 2001/11/09 14:59:11; author: augustss; state: Exp; lines: +2 -1
Add a debug message.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/usb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c index 2101a01..4cc42c4 100644 --- a/sys/dev/usb/usb.c +++ b/sys/dev/usb/usb.c @@ -1,4 +1,4 @@ -/* $NetBSD: usb.c,v 1.53 2001/01/23 17:04:30 augustss Exp $ */ +/* $NetBSD: usb.c,v 1.54 2001/11/09 14:59:11 augustss Exp $ */ /* $FreeBSD$ */ /* @@ -767,6 +767,7 @@ usb_add_event(int type, struct usb_event *uep) void usb_schedsoftintr(usbd_bus_handle bus) { + DPRINTFN(10,("usb_schedsoftintr: polling=%d\n", bus->use_polling)); #ifdef USB_USE_SOFTINTR if (bus->use_polling) { bus->methods->soft_intr(bus); |