blob: 8c4bef28706388fb7e238cfd866c7dbbb5937b57 [file] [log] [blame]
wdenk507bbe32004-04-18 21:13:41 +00001#ifndef _ASM_TYPES_H
2#define _ASM_TYPES_H
3
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.
10 */
11
12typedef unsigned short umode_t;
13
14/*
15 * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
16 * header files exported to user space
17 */
18
19typedef __signed__ char __s8;
20typedef unsigned char __u8;
21
22typedef __signed__ short __s16;
23typedef unsigned short __u16;
24
25typedef __signed__ int __s32;
26typedef unsigned int __u32;
27
28#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
29typedef __signed__ long long __s64;
30typedef unsigned long long __u64;
31#endif
32
33/*
34 * These aren't exported outside the kernel to avoid name space clashes
35 */
36#ifdef __KERNEL__
37
38typedef signed char s8;
39typedef unsigned char u8;
40
41typedef signed short s16;
42typedef unsigned short u16;
43
44typedef signed int s32;
45typedef unsigned int u32;
46
47typedef signed long long s64;
48typedef unsigned long long u64;
49
50#define BITS_PER_LONG 32
51
52/* Dma addresses are 32-bits wide. */
53
54typedef u32 dma_addr_t;
55#endif /* __KERNEL__ */
56
57#endif /* _ASM_TYPES_H */