Changeset f8e8738 in mainline for uspace/drv/ohci/hw_struct/completion_codes.h
- Timestamp:
- 2011-04-07T20:22:40Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fee6381
- Parents:
- 61257f4 (diff), a82889e (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 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/ohci/hw_struct/completion_codes.h
r61257f4 rf8e8738 1 1 /* 2 * Copyright (c) 20 05 Sergey Bondari2 * Copyright (c) 2011 Jan Vesely 3 3 * All rights reserved. 4 4 * … … 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 29 /** @addtogroup arm32 28 /** @addtogroup drvusbohci 30 29 * @{ 31 30 */ 32 31 /** @file 33 * @brief Memory manipulating functions declarations.32 * @brief OHCI driver 34 33 */ 34 #ifndef DRV_OHCI_HW_STRUCT_COMPLETION_CODES_H 35 #define DRV_OHCI_HW_STRUCT_COMPLETION_CODES_H 35 36 36 #ifndef KERN_arm32_MEMSTR_H_ 37 #define KERN_arm32_MEMSTR_H_ 38 39 #define memcpy(dst, src, cnt) __builtin_memcpy((dst), (src), (cnt)) 40 41 extern void memsetw(void *, size_t, uint16_t); 42 extern void memsetb(void *, size_t, uint8_t); 37 #define CC_NOERROR (0x0) 38 #define CC_CRC (0x1) 39 #define CC_BITSTUFF (0x2) 40 #define CC_TOGGLE (0x3) 41 #define CC_STALL (0x4) 42 #define CC_NORESPONSE (0x5) 43 #define CC_PIDFAIL (0x6) 44 #define CC_PIDUNEXPECTED (0x7) 45 #define CC_DATAOVERRRUN (0x8) 46 #define CC_DATAUNDERRRUN (0x9) 47 #define CC_BUFFEROVERRRUN (0xc) 48 #define CC_BUFFERUNDERRUN (0xd) 49 #define CC_NOACCESS1 (0xe) 50 #define CC_NOACCESS2 (0xf) 43 51 44 52 #endif 45 46 /** @}53 /** 54 * @} 47 55 */
Note:
See TracChangeset
for help on using the changeset viewer.