Changeset 890961a in mainline for uspace/drv/vhc/hub.c
- Timestamp:
- 2011-04-29T12:37:42Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e67399e
- Parents:
- b20de1d (diff), 9d05599 (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/drv/vhc/hub.c
rb20de1d r890961a 34 34 */ 35 35 #include <usb/classes/classes.h> 36 #include <usbvirt/hub.h>37 36 #include <usbvirt/device.h> 38 37 #include <errno.h> … … 45 44 46 45 #include "hub.h" 47 #include "hub/virthub.h"46 //#include "hub/virthub.h" 48 47 #include "vhcd.h" 49 48 #include "conn.h" 50 49 51 usbvirt_device_t virtual_hub_device; 50 usbvirt_device_t virtual_hub_device = { 51 .name = "root hub", 52 .ops = &hub_ops, 53 .address = 0 54 }; 55 52 56 static ddf_dev_ops_t rh_ops = { 53 57 .interfaces[USB_DEV_IFACE] = &rh_usb_iface,
Note:
See TracChangeset
for help on using the changeset viewer.