Changeset cf002dbf in mainline for uspace/drv/usbmast/mast.h


Ignore:
Timestamp:
2011-05-11T19:31:16Z (14 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5f0fe4e9
Parents:
70c12d6
Message:

Add comments to mass storage driver

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/usbmast/mast.h

    r70c12d6 rcf002dbf  
    4242#include <usb/devdrv.h>
    4343
     44/** Result of SCSI INQUIRY command.
     45 * This is already parsed structure, not the original buffer returned by
     46 * the device.
     47 */
    4448typedef struct {
     49        /** SCSI peripheral device type. */
    4550        int peripheral_device_type;
     51        /** Whether the device is removable. */
    4652        bool removable;
     53        /** Vendor ID string. */
    4754        char vendor_id[9];
     55        /** Product ID and product revision string. */
    4856        char product_and_revision[12];
    4957} usb_massstor_inquiry_result_t;
Note: See TracChangeset for help on using the changeset viewer.