7f75f5eb1e
*Due space limitations only the debug version of kenobigc is supported, this means there is a bit less space for cheats. git-svn-id: svn://localhost/Users/andi/Downloads/code/trunk@2 be6c1b03-d731-4111-a574-e37d80d43941
56 lines
1.1 KiB
C
56 lines
1.1 KiB
C
#ifndef __EHCI_TYPES_H__
|
|
#define __EHCI_TYPES_H__
|
|
|
|
#include "global.h"
|
|
|
|
/* linux kernel types needed by our code */
|
|
#define __iomem
|
|
|
|
typedef unsigned long uint32_t;
|
|
|
|
#if 0
|
|
typedef unsigned long u32;
|
|
typedef signed long s32;
|
|
typedef unsigned short u16;
|
|
typedef unsigned char u8;
|
|
typedef char s8;
|
|
typedef unsigned long long u64;
|
|
#endif
|
|
|
|
#define __u32 u32
|
|
#define __le32 u32
|
|
#define dma_addr_t u32
|
|
#define __GNUG__
|
|
typedef u32 spinlock_t;
|
|
typedef enum
|
|
{
|
|
GFP_KERNEL=1
|
|
}gfp_t;
|
|
struct timer_list
|
|
{
|
|
int time;
|
|
};
|
|
enum{
|
|
ENODEV =1,
|
|
ETIMEDOUT,
|
|
EINVAL,
|
|
ENOMEM,
|
|
|
|
};
|
|
#define jiffies 0
|
|
#define likely(x) (x)
|
|
#define unlikely(x) (x)
|
|
#define container_of(ptr, type, member) ({ \
|
|
const typeof( ((type *)0)->member ) *__mptr = (ptr); \
|
|
(type *)( (char *)__mptr - offsetof(type,member) );})
|
|
|
|
#undef offsetof
|
|
#ifdef __compiler_offsetof
|
|
#define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER)
|
|
#else
|
|
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
|
#endif
|
|
|
|
|
|
#endif
|