diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-04-04 22:51:25 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-04-04 22:51:25 +0000 |
commit | af006b8f0ebd602cf62c8608a7a0b061f9d2c0f6 (patch) | |
tree | c6d5e77d9aff5522c00a52d8cde4c85372765318 /sys/dev/usb/usb_port.h | |
parent | 05babea2ba5e6342c76314124c81569931b0367d (diff) |
New USB mass storage driver. Improvements: Uses asynchronous USB requests,
supports more transport protocols (bulk-only and CBI), supports more command
sets (SCSI and ATAPI); from NetBSD. Not yet tested.
Diffstat (limited to 'sys/dev/usb/usb_port.h')
-rw-r--r-- | sys/dev/usb/usb_port.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/usb/usb_port.h b/sys/dev/usb/usb_port.h index 20448e5b180..b343ec05933 100644 --- a/sys/dev/usb/usb_port.h +++ b/sys/dev/usb/usb_port.h @@ -1,4 +1,4 @@ -/* $OpenBSD: usb_port.h,v 1.10 2000/03/31 22:11:37 aaron Exp $ */ +/* $OpenBSD: usb_port.h,v 1.11 2000/04/04 22:51:23 aaron Exp $ */ /* $NetBSD: usb_port.h,v 1.28 2000/03/30 08:53:31 augustss Exp $ */ /* $FreeBSD: src/sys/dev/usb/usb_port.h,v 1.21 1999/11/17 22:33:47 n_hibma Exp $ */ @@ -65,6 +65,7 @@ #define CUE_DEBUG 1 #define KUE_DEBUG 1 #define UMASS_DEBUG 1 +#define UVISOR_DEBUG 1 #define Static #else #define Static static @@ -183,10 +184,12 @@ __CONCAT(dname,_detach)(self, flags) \ #define CUE_DEBUG 1 #define KUE_DEBUG 1 #define UMASS_DEBUG 1 +#define UVISOR_DEBUG 1 #endif #define Static +#define SCSI_MODE_SENSE MODE_SENSE #define XS_STS_DONE ITSDONE #define XS_CTL_POLL SCSI_POLL #define XS_CTL_DATA_IN SCSI_DATA_IN |