diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-11-28 22:56:26 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-11-28 22:56:26 +0000 |
commit | b47b66375e0f252552a738cc1ea63dd564a92887 (patch) | |
tree | d20d8d75e577c81242a3cb79bffa0c014bf8211a /sys/dev/usb/usb.c | |
parent | 3d40fc81c17f73476ed5b27ec20b22a95bf09b56 (diff) | |
download | FreeBSD-src-b47b66375e0f252552a738cc1ea63dd564a92887.zip FreeBSD-src-b47b66375e0f252552a738cc1ea63dd564a92887.tar.gz |
Woops, it seems to fail initialisation. Disabled while I am figuring out
how to get the USB revision from the OHCI controller.
Now where did I leave that spec? ...
Diffstat (limited to 'sys/dev/usb/usb.c')
-rw-r--r-- | sys/dev/usb/usb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c index 891aca7..9724b3a 100644 --- a/sys/dev/usb/usb.c +++ b/sys/dev/usb/usb.c @@ -211,7 +211,9 @@ USB_ATTACH(usb) printf(": USB revision %s", usbrev_str[usbrev]); if (usbrev != USBREV_1_0 && usbrev != USBREV_1_1) { printf(", not supported\n"); +#if BROKEN USB_ATTACH_ERROR_RETURN; +#endif } printf("\n"); |