Changeset 32c2c8f in mainline for uspace/lib/usbvirt
- Timestamp:
- 2013-01-05T21:52:56Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1da979d
- Parents:
- b997e7b
- Location:
- uspace/lib/usbvirt
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbvirt/Makefile
rb997e7b r32c2c8f 34 34 -I$(LIBUSB_PREFIX)/include \ 35 35 -I$(LIBUSBDEV_PREFIX)/include \ 36 -Iinclude 36 -Iinclude \ 37 -Iinclude/usbvirt 37 38 38 39 SOURCES = \ … … 42 43 src/ipc_hc.c \ 43 44 src/stdreq.c \ 44 src/transfer.c 45 src/transfer.c \ 46 src/virthub_base.c \ 47 src/virthub_descriptors.c 45 48 46 49 include $(USPACE_PREFIX)/Makefile.common -
uspace/lib/usbvirt/include/usbvirt/device.h
rb997e7b r32c2c8f 239 239 }; 240 240 241 242 int req_nop(usbvirt_device_t *device, 243 const usb_device_request_setup_packet_t *setup_packet, 244 uint8_t *data, size_t *act_size); 245 241 246 int usbvirt_device_plug(usbvirt_device_t *, const char *); 242 247 void usbvirt_device_unplug(usbvirt_device_t *); -
uspace/lib/usbvirt/src/stdreq.c
rb997e7b r32c2c8f 65 65 } 66 66 67 /** NOP handler */ 68 int 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 67 75 /** GET_DESCRIPTOR handler. */ 68 76 static int req_get_descriptor(usbvirt_device_t *device,
Note:
See TracChangeset
for help on using the changeset viewer.