Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-m68k / types.h
blobf391cbe39b965c68c9fcfdc1301ccc31c21ba897
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 #ifndef __ASSEMBLY__
14 typedef unsigned short umode_t;
17 * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
18 * header files exported to user space
21 typedef __signed__ char __s8;
22 typedef unsigned char __u8;
24 typedef __signed__ short __s16;
25 typedef unsigned short __u16;
27 typedef __signed__ int __s32;
28 typedef unsigned int __u32;
30 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
31 typedef __signed__ long long __s64;
32 typedef unsigned long long __u64;
33 #endif
35 #endif /* __ASSEMBLY__ */
38 * These aren't exported outside the kernel to avoid name space clashes
40 #ifdef __KERNEL__
42 #define BITS_PER_LONG 32
44 #ifndef __ASSEMBLY__
46 typedef signed char s8;
47 typedef unsigned char u8;
49 typedef signed short s16;
50 typedef unsigned short u16;
52 typedef signed int s32;
53 typedef unsigned int u32;
55 typedef signed long long s64;
56 typedef unsigned long long u64;
58 /* DMA addresses are always 32-bits wide */
60 typedef u32 dma_addr_t;
61 typedef u32 dma64_addr_t;
63 typedef unsigned short kmem_bufctl_t;
65 #endif /* __ASSEMBLY__ */
67 #endif /* __KERNEL__ */
69 #endif /* _M68K_TYPES_H */