Changeset c8ca07e in mainline
- Timestamp:
- 2011-01-29T06:33:09Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 621fdaa
- Parents:
- 44d8853 (diff), 76b57734 (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/drv/uhci
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci/uhci.h
r44d8853 rc8ca07e 56 56 57 57 uint16_t usbsts; 58 #define UHCI_STATUS_HALTED (1 << 5) 59 #define UHCI_STATUS_PROCESS_ERROR (1 << 4) 60 #define UHCI_STATUS_SYSTEM_ERROR (1 << 3) 61 #define UHCI_STATUS_RESUME (1 << 2) 62 #define UHCI_STATUS_ERROR_INTERRUPT (1 << 1) 63 #define UHCI_STATUS_INTERRUPT (1 << 0) 64 58 65 uint16_t usbintr; 59 66 uint16_t frnum; -
uspace/drv/uhci/utils/malloc32.h
r44d8853 rc8ca07e 53 53 static inline void * malloc32(size_t size) 54 54 /* TODO: this is ugly */ 55 { return memalign( size, 16); }55 { return memalign(16, size); } 56 56 57 57 static inline void * get_page() … … 69 69 70 70 static inline void * memalign32(size_t size, size_t alignment) 71 { return memalign( size, alignment); }71 { return memalign(alignment, size); } 72 72 73 73 static inline void free32(void * addr)
Note:
See TracChangeset
for help on using the changeset viewer.