Changeset eb1a2f4 in mainline for uspace/lib/usb/include
- Timestamp:
- 2011-02-22T23:30:56Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3b5d1535, a9c674e0
- Parents:
- dbe25f1 (diff), 664af708 (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. - Location:
- uspace/lib/usb/include/usb
- Files:
-
- 5 edited
-
ddfiface.h (modified) (1 diff)
-
hub.h (modified) (1 diff)
-
pipes.h (modified) (2 diffs)
-
recognise.h (modified) (1 diff)
-
usbdevice.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/include/usb/ddfiface.h
rdbe25f1 reb1a2f4 40 40 #include <usb_iface.h> 41 41 42 int usb_iface_get_hc_handle_hub_impl(d evice_t *, devman_handle_t *);43 int usb_iface_get_address_hub_impl(d evice_t *, devman_handle_t,42 int usb_iface_get_hc_handle_hub_impl(ddf_fun_t *, devman_handle_t *); 43 int usb_iface_get_address_hub_impl(ddf_fun_t *, devman_handle_t, 44 44 usb_address_t *); 45 45 extern usb_iface_t usb_iface_hub_impl; 46 46 47 int usb_iface_get_hc_handle_hub_child_impl(d evice_t *, devman_handle_t *);48 int usb_iface_get_address_hub_child_impl(d evice_t *, devman_handle_t,47 int usb_iface_get_hc_handle_hub_child_impl(ddf_fun_t *, devman_handle_t *); 48 int usb_iface_get_address_hub_child_impl(ddf_fun_t *, devman_handle_t, 49 49 usb_address_t *); 50 50 extern usb_iface_t usb_iface_hub_child_impl; 51 51 52 int usb_iface_get_hc_handle_hc_impl(d evice_t *, devman_handle_t *);52 int usb_iface_get_hc_handle_hc_impl(ddf_fun_t *, devman_handle_t *); 53 53 54 54 -
uspace/lib/usb/include/usb/hub.h
rdbe25f1 reb1a2f4 39 39 #include <usb/usbdevice.h> 40 40 41 int usb_hc_new_device_wrapper(device_t *, usb_hc_connection_t *, usb_speed_t, 42 int (*)(int, void *), int, void *, usb_address_t *, devman_handle_t *); 41 int usb_hc_new_device_wrapper(ddf_dev_t *, usb_hc_connection_t *, usb_speed_t, 42 int (*)(int, void *), int, void *, 43 usb_address_t *, devman_handle_t *, 44 ddf_dev_ops_t *, void *, ddf_fun_t **); 43 45 44 46 /** Info about device attached to host controller. -
uspace/lib/usb/include/usb/pipes.h
rdbe25f1 reb1a2f4 41 41 #include <usb/descriptor.h> 42 42 #include <ipc/devman.h> 43 #include <d river.h>43 #include <ddf/driver.h> 44 44 45 45 /** … … 120 120 usb_device_connection_t *, usb_hc_connection_t *); 121 121 int usb_device_connection_initialize_from_device(usb_device_connection_t *, 122 d evice_t *);122 ddf_dev_t *); 123 123 int usb_device_connection_initialize(usb_device_connection_t *, 124 124 devman_handle_t, usb_address_t); 125 125 126 int usb_device_get_assigned_interface(d evice_t *);126 int usb_device_get_assigned_interface(ddf_dev_t *); 127 127 128 128 int usb_endpoint_pipe_initialize(usb_endpoint_pipe_t *, -
uspace/lib/usb/include/usb/recognise.h
rdbe25f1 reb1a2f4 50 50 int usb_device_create_match_ids(usb_endpoint_pipe_t *, match_id_list_t *); 51 51 52 int usb_device_register_child_in_devman(usb_address_t address, devman_handle_t hc_handle,53 d evice_t *parent, devman_handle_t *child_handle);52 int usb_device_register_child_in_devman(usb_address_t, devman_handle_t, 53 ddf_dev_t *, devman_handle_t *, ddf_dev_ops_t *, void *, ddf_fun_t **); 54 54 55 55 #endif -
uspace/lib/usb/include/usb/usbdevice.h
rdbe25f1 reb1a2f4 38 38 #include <sys/types.h> 39 39 #include <ipc/devman.h> 40 #include <d river.h>40 #include <ddf/driver.h> 41 41 #include <bool.h> 42 42 #include <usb/usb.h> … … 53 53 54 54 int usb_hc_connection_initialize_from_device(usb_hc_connection_t *, 55 d evice_t *);55 ddf_dev_t *); 56 56 int usb_hc_connection_initialize(usb_hc_connection_t *, devman_handle_t); 57 57
Note:
See TracChangeset
for help on using the changeset viewer.
