Changeset 7b2c17c in mainline for uspace/drv/bus/usb/usbmast/main.c


Ignore:
Timestamp:
2011-07-02T20:42:14Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d2fac08c
Parents:
239e7e10
Message:

Structure for SCSI standard inquiry data. Also fixes decoding of product and revision string in usbmast.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/usbmast/main.c

    r239e7e10 r7b2c17c  
    119119
    120120        usb_log_info("Mass storage `%s': " \
    121             "`%s' by `%s' is %s (%s), %zu LUN(s).\n",
     121            "%s by %s rev. %s is %s (%s), %zu LUN(s).\n",
    122122            dev->ddf_dev->name,
    123             inquiry.product_and_revision, inquiry.vendor_id,
    124             usb_str_masstor_scsi_peripheral_device_type(inquiry.peripheral_device_type),
     123            inquiry.product,
     124            inquiry.vendor,
     125            inquiry.revision,
     126            usb_str_masstor_scsi_peripheral_device_type(inquiry.device_type),
    125127            inquiry.removable ? "removable" : "non-removable",
    126128            lun_count);
Note: See TracChangeset for help on using the changeset viewer.