Changeset 32c2c8f in mainline for uspace/lib/usbvirt/src/stdreq.c


Ignore:
Timestamp:
2013-01-05T21:52:56Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1da979d
Parents:
b997e7b
Message:

libusbvirt: Add basic hub device implementation.

It takes care of descriptors, address, and state tracking.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbvirt/src/stdreq.c

    rb997e7b r32c2c8f  
    6565}
    6666
     67/** NOP handler */
     68int req_nop(usbvirt_device_t *device,
     69    const usb_device_request_setup_packet_t *setup_packet,
     70    uint8_t *data, size_t *act_size)
     71{
     72        return EOK;
     73}
     74
    6775/** GET_DESCRIPTOR handler. */
    6876static int req_get_descriptor(usbvirt_device_t *device,
Note: See TracChangeset for help on using the changeset viewer.