diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-04-11 20:50:33 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-04-11 20:50:33 +0000 |
commit | 94f89925adaf485e8c44ea5051caca0d5144810a (patch) | |
tree | 6daf4c342ff3a4576dd2894fcdc7c087ff58208f /sys/dev/usb/uhcivar.h | |
parent | d844f4559093125d735a5de22713c447117cf696 (diff) | |
download | FreeBSD-src-94f89925adaf485e8c44ea5051caca0d5144810a.zip FreeBSD-src-94f89925adaf485e8c44ea5051caca0d5144810a.tar.gz |
1) Make debugging more selective.
2) create function usbd_errstr which turns a usbd_status into a sensible
error message
3) Change the printf in DPRINTF to logprintf which is a define for
log(KERN_DEBUG, x)
Diffstat (limited to 'sys/dev/usb/uhcivar.h')
-rw-r--r-- | sys/dev/usb/uhcivar.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sys/dev/usb/uhcivar.h b/sys/dev/usb/uhcivar.h index 723b449..2171374 100644 --- a/sys/dev/usb/uhcivar.h +++ b/sys/dev/usb/uhcivar.h @@ -168,12 +168,3 @@ int uhci_intr __P((void *)); void uhci_reset __P((void *)); #endif -#ifdef USB_DEBUG -#define DPRINTF(x) if (uhcidebug) printf x -#define DPRINTFN(n,x) if (uhcidebug>(n)) printf x -extern int uhcidebug; -#else -#define DPRINTF(x) -#define DPRINTFN(n,x) -#endif - |