]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - include/asm-frv/types.h
Linux-2.6.12-rc2
[mirror_ubuntu-bionic-kernel.git] / include / asm-frv / types.h
1 /* types.h: FRV types
2 *
3 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12 #ifndef _ASM_TYPES_H
13 #define _ASM_TYPES_H
14
15 #ifndef __ASSEMBLY__
16
17 typedef unsigned short umode_t;
18
19 /*
20 * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
21 * header files exported to user space
22 */
23
24 typedef __signed__ char __s8;
25 typedef unsigned char __u8;
26
27 typedef __signed__ short __s16;
28 typedef unsigned short __u16;
29
30 typedef __signed__ int __s32;
31 typedef unsigned int __u32;
32
33 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
34 typedef __signed__ long long __s64;
35 typedef unsigned long long __u64;
36 #endif
37
38 #endif /* __ASSEMBLY__ */
39
40 /*
41 * These aren't exported outside the kernel to avoid name space clashes
42 */
43 #ifdef __KERNEL__
44
45 #define BITS_PER_LONG 32
46
47 #ifndef __ASSEMBLY__
48
49 #include <linux/config.h>
50
51 typedef signed char s8;
52 typedef unsigned char u8;
53
54 typedef signed short s16;
55 typedef unsigned short u16;
56
57 typedef signed int s32;
58 typedef unsigned int u32;
59
60 typedef signed long long s64;
61 typedef unsigned long long u64;
62 typedef u64 u_quad_t;
63
64 /* Dma addresses are 32-bits wide. */
65
66 typedef u32 dma_addr_t;
67
68 typedef unsigned short kmem_bufctl_t;
69
70 #endif /* __ASSEMBLY__ */
71
72 #endif /* __KERNEL__ */
73
74 #endif /* _ASM_TYPES_H */