Changeset cf002dbf in mainline for uspace/drv/usbmast/mast.h
- Timestamp:
- 2011-05-11T19:31:16Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5f0fe4e9
- Parents:
- 70c12d6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbmast/mast.h
r70c12d6 rcf002dbf 42 42 #include <usb/devdrv.h> 43 43 44 /** Result of SCSI INQUIRY command. 45 * This is already parsed structure, not the original buffer returned by 46 * the device. 47 */ 44 48 typedef struct { 49 /** SCSI peripheral device type. */ 45 50 int peripheral_device_type; 51 /** Whether the device is removable. */ 46 52 bool removable; 53 /** Vendor ID string. */ 47 54 char vendor_id[9]; 55 /** Product ID and product revision string. */ 48 56 char product_and_revision[12]; 49 57 } usb_massstor_inquiry_result_t;
Note:
See TracChangeset
for help on using the changeset viewer.