- Peter Anvin: more P4 configuration parsing
[davej-history.git] / include / asm-m68k / types.h
blob45d1588f28e3f121bcfc69556be23bf71d280d4b
1 #ifndef _M68K_TYPES_H
2 #define _M68K_TYPES_H
4 /*
5 * This file is never included by application software unless
6 * explicitly requested (e.g., via linux/types.h) in which case the
7 * application is Linux specific so (user-) name space pollution is
8 * not a major issue. However, for interoperability, libraries still
9 * need to be careful to avoid a name clashes.
12 typedef unsigned short umode_t;
15 * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
16 * header files exported to user space
19 typedef __signed__ char __s8;
20 typedef unsigned char __u8;
22 typedef __signed__ short __s16;
23 typedef unsigned short __u16;
25 typedef __signed__ int __s32;
26 typedef unsigned int __u32;
28 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
29 typedef __signed__ long long __s64;
30 typedef unsigned long long __u64;
31 #endif
34 * These aren't exported outside the kernel to avoid name space clashes
36 #ifdef __KERNEL__
38 typedef signed char s8;
39 typedef unsigned char u8;
41 typedef signed short s16;
42 typedef unsigned short u16;
44 typedef signed int s32;
45 typedef unsigned int u32;
47 typedef signed long long s64;
48 typedef unsigned long long u64;
50 #define BITS_PER_LONG 32
52 /* DMA addresses are 32-bits wide */
54 typedef u32 dma_addr_t;
56 #endif /* __KERNEL__ */
58 #endif /* _M68K_TYPES_H */