Changeset af2b806 in mainline
- Timestamp:
- 2011-08-31T14:13:55Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 96e2d01
- Parents:
- 8d70937
- Location:
- uspace/drv/bus/usb/uhci
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/uhci/hw_struct/transfer_descriptor.c
r8d70937 raf2b806 62 62 void td_init(td_t *instance, int err_count, size_t size, bool toggle, bool iso, 63 63 bool low_speed, usb_target_t target, usb_packet_id pid, void *buffer, 64 td_t *next)64 const td_t *next) 65 65 { 66 66 assert(instance); -
uspace/drv/bus/usb/uhci/hw_struct/transfer_descriptor.h
r8d70937 raf2b806 95 95 void td_init(td_t *instance, int error_count, size_t size, bool toggle, 96 96 bool iso, bool low_speed, usb_target_t target, usb_packet_id pid, 97 void *buffer, td_t *next);97 void *buffer, const td_t *next); 98 98 99 99 int td_status(td_t *instance); -
uspace/drv/bus/usb/uhci/utils/malloc32.h
r8d70937 raf2b806 50 50 * @return Physical address if exists, NULL otherwise. 51 51 */ 52 static inline uintptr_t addr_to_phys( void *addr)52 static inline uintptr_t addr_to_phys(const void *addr) 53 53 { 54 54 if (addr == NULL)
Note:
See TracChangeset
for help on using the changeset viewer.