Ignore:
Timestamp:
2011-04-07T20:22:40Z (13 years ago)
Author:
Lubos Slovak <lubos.slovak@…>
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.
Message:

Changes from development

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/drv/ohci/hw_struct/completion_codes.h

    r61257f4 rf8e8738  
    11/*
    2  * Copyright (c) 2005 Sergey Bondari
     2 * Copyright (c) 2011 Jan Vesely
    33 * All rights reserved.
    44 *
     
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2727 */
    28 
    29 /** @addtogroup arm32
     28/** @addtogroup drvusbohci
    3029 * @{
    3130 */
    3231/** @file
    33  *  @brief Memory manipulating functions declarations.
     32 * @brief OHCI driver
    3433 */
     34#ifndef DRV_OHCI_HW_STRUCT_COMPLETION_CODES_H
     35#define DRV_OHCI_HW_STRUCT_COMPLETION_CODES_H
    3536
    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)
    4351
    4452#endif
    45 
    46 /** @}
     53/**
     54 * @}
    4755 */
Note: See TracChangeset for help on using the changeset viewer.