Changeset 2ef8023 in mainline
- Timestamp:
- 2014-01-02T21:10:17Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fddffb2
- Parents:
- 4942d63
- Location:
- uspace/drv/bus/usb
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/main.c
r4942d63 r2ef8023 83 83 static int ehci_dev_add(ddf_dev_t *device); 84 84 85 static driver_ops_t ehci_driver_ops = {85 static const driver_ops_t ehci_driver_ops = { 86 86 .dev_add = ehci_dev_add, 87 87 }; 88 88 89 static driver_t ehci_driver = {89 static const driver_t ehci_driver = { 90 90 .name = NAME, 91 91 .driver_ops = &ehci_driver_ops -
uspace/drv/bus/usb/ohci/main.c
r4942d63 r2ef8023 104 104 } 105 105 106 static driver_ops_t ohci_driver_ops = {106 static const driver_ops_t ohci_driver_ops = { 107 107 .dev_add = ohci_dev_add, 108 108 }; 109 109 110 static driver_t ohci_driver = {110 static const driver_t ohci_driver = { 111 111 .name = NAME, 112 112 .driver_ops = &ohci_driver_ops -
uspace/drv/bus/usb/uhci/main.c
r4942d63 r2ef8023 84 84 static int uhci_dev_add(ddf_dev_t *device); 85 85 86 static driver_ops_t uhci_driver_ops = {86 static const driver_ops_t uhci_driver_ops = { 87 87 .dev_add = uhci_dev_add, 88 88 }; 89 89 90 static driver_t uhci_driver = {90 static const driver_t uhci_driver = { 91 91 .name = NAME, 92 92 .driver_ops = &uhci_driver_ops
Note:
See TracChangeset
for help on using the changeset viewer.