Changes in uspace/drv/vhc/hcd.c [f0da4eb2:ad104e0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/vhc/hcd.c
rf0da4eb2 rad104e0 52 52 #include "conn.h" 53 53 54 static device_ops_t vhc_ops = { 55 .interfaces[USBHC_DEV_IFACE] = &vhc_iface, 56 .default_handler = default_connection_handler 57 }; 54 58 55 59 static int vhc_count = 0; 56 static int vhc_add_device( usb_hc_device_t *dev)60 static int vhc_add_device(device_t *dev) 57 61 { 58 62 /* … … 65 69 vhc_count++; 66 70 67 dev->transfer_ops = &vhc_transfer_ops; 68 dev->generic->ops->default_handler = default_connection_handler; 71 dev->ops = &vhc_ops; 72 73 /* 74 * Initialize address management. 75 */ 76 address_init(); 69 77 70 78 /* … … 79 87 } 80 88 81 static usb_hc_driver_t vhc_driver = { 89 static driver_ops_t vhc_driver_ops = { 90 .add_device = vhc_add_device, 91 }; 92 93 static driver_t vhc_driver = { 82 94 .name = NAME, 83 . add_hc = &vhc_add_device95 .driver_ops = &vhc_driver_ops 84 96 }; 85 97 … … 114 126 sleep(4); 115 127 116 return usb_hcd_main(&vhc_driver);128 return driver_main(&vhc_driver); 117 129 } 118 130
Note:
See TracChangeset
for help on using the changeset viewer.