Changeset 0f191a2 in mainline for uspace/lib/drv
- Timestamp:
- 2011-01-07T09:20:13Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2b0db98, 2c98e78, 43c3937
- Parents:
- ae1f70e (diff), 8f8a0cd6 (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/drv
- Files:
-
- 3 added
- 4 edited
-
Makefile (modified) (1 diff)
-
generic/dev_iface.c (modified) (2 diffs)
-
generic/remote_usb.c (added)
-
generic/remote_usbhc.c (modified) (2 diffs)
-
include/remote_usb.h (added)
-
include/usb_iface.h (added)
-
include/usbhc_iface.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/Makefile
rae1f70e r0f191a2 36 36 generic/dev_iface.c \ 37 37 generic/remote_res.c \ 38 generic/remote_usb.c \ 38 39 generic/remote_usbhc.c \ 39 40 generic/remote_char.c -
uspace/lib/drv/generic/dev_iface.c
rae1f70e r0f191a2 39 39 #include "remote_res.h" 40 40 #include "remote_char.h" 41 #include "remote_usb.h" 41 42 #include "remote_usbhc.h" 42 43 … … 45 46 &remote_res_iface, 46 47 &remote_char_iface, 48 &remote_usb_iface, 47 49 &remote_usbhc_iface 48 50 } -
uspace/lib/drv/generic/remote_usbhc.c
rae1f70e r0f191a2 59 59 //static void remote_usbhc(device_t *, void *, ipc_callid_t, ipc_call_t *); 60 60 61 /** Remote USB interface operations. */61 /** Remote USB host controller interface operations. */ 62 62 static remote_iface_func_ptr_t remote_usbhc_iface_ops [] = { 63 63 remote_usbhc_get_address, … … 84 84 }; 85 85 86 /** Remote USB interface structure.86 /** Remote USB host controller interface structure. 87 87 */ 88 88 remote_iface_t remote_usbhc_iface = { -
uspace/lib/drv/include/usbhc_iface.h
rae1f70e r0f191a2 31 31 */ 32 32 /** @file 33 * @brief USB interface definition.33 * @brief USB host controller interface definition. 34 34 */ 35 35 … … 226 226 usbhc_iface_transfer_in_callback_t, void *); 227 227 228 /** USB devicescommunication interface. */228 /** USB host controller communication interface. */ 229 229 typedef struct { 230 230 int (*tell_address)(device_t *, devman_handle_t, usb_address_t *);
Note:
See TracChangeset
for help on using the changeset viewer.
