diff options
author | n_hibma <n_hibma@FreeBSD.org> | 2000-05-07 18:38:41 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 2000-05-07 18:38:41 +0000 |
commit | 836245c81a021b9c3527e0e7ba21b4f77f576364 (patch) | |
tree | 61e22dc6e30e1917565e96b445640fddbaf65f09 /sys/dev/usb/usb.c | |
parent | 371920811f48f92f5908ed1ce3ba680f773f908d (diff) | |
download | FreeBSD-src-836245c81a021b9c3527e0e7ba21b4f77f576364.zip FreeBSD-src-836245c81a021b9c3527e0e7ba21b4f77f576364.tar.gz |
Increase the debugging level on a printf.
Diffstat (limited to 'sys/dev/usb/usb.c')
-rw-r--r-- | sys/dev/usb/usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c index e99bb71..da3ac32 100644 --- a/sys/dev/usb/usb.c +++ b/sys/dev/usb/usb.c @@ -550,7 +550,7 @@ usbpoll(dev, events, p) if ((events & mask) && usb_nevents > 0) revents |= events & mask; if (revents == 0 && (events & mask)) { - DPRINTF(("usb: sleeping on %p\n", &usb_selevent)); + DPRINTFN(2,("usb: sleeping on %p\n", &usb_selevent)); selrecord(p, &usb_selevent); } splx(s); |