Changeset 11658b64 in mainline for uspace/app/virtusbkbd/stdreq.c
- Timestamp:
- 2010-12-16T11:54:53Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 557c7d0, 5863a95, 82122f3, a8b7dfd, f2962621
- Parents:
- a9b6bec (diff), 70e5ad5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/virtusbkbd/stdreq.c
ra9b6bec r11658b64 39 39 #include "kbdconfig.h" 40 40 41 static int on_get_descriptor(struct usbvirt_device *dev, 42 usb_device_request_setup_packet_t *request, uint8_t *data); 43 44 usbvirt_standard_device_request_ops_t standard_request_ops = { 45 .on_get_status = NULL, 46 .on_clear_feature = NULL, 47 .on_set_feature = NULL, 48 .on_set_address = NULL, 49 .on_get_descriptor = on_get_descriptor, 50 .on_set_descriptor = NULL, 51 .on_get_configuration = NULL, 52 .on_set_configuration = NULL, 53 .on_get_interface = NULL, 54 .on_set_interface = NULL, 55 .on_synch_frame = NULL 56 }; 57 58 59 static int on_get_descriptor(struct usbvirt_device *dev, 41 int stdreq_on_get_descriptor(struct usbvirt_device *dev, 60 42 usb_device_request_setup_packet_t *request, uint8_t *data) 61 43 {
Note:
See TracChangeset
for help on using the changeset viewer.