Changeset 25696fea in mainline for uspace/drv/bus/usb/usbmouse/main.c
- Timestamp:
- 2011-10-15T20:05:00Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 22ceff3a
- Parents:
- 1ccc32f (diff), 721d4b6e (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/bus/usb/usbmouse/main.c
r1ccc32f r25696fea 50 50 * 51 51 */ 52 static int usbmouse_ add_device(usb_device_t *dev)52 static int usbmouse_device_add(usb_device_t *dev) 53 53 { 54 54 int rc = usb_mouse_create(dev); … … 80 80 /** USB mouse driver ops. */ 81 81 static usb_driver_ops_t mouse_driver_ops = { 82 . add_device = usbmouse_add_device,82 .device_add = usbmouse_device_add, 83 83 }; 84 84
Note:
See TracChangeset
for help on using the changeset viewer.