diff options
-rw-r--r-- | include/asm-powerpc/types.h (renamed from include/asm-ppc64/types.h) | 31 | ||||
-rw-r--r-- | include/asm-ppc/types.h | 69 |
2 files changed, 28 insertions, 72 deletions
diff --git a/include/asm-ppc64/types.h b/include/asm-powerpc/types.h index bf294c1761b2..7d803cb547bb 100644 --- a/include/asm-ppc64/types.h +++ b/include/asm-powerpc/types.h | |||
@@ -1,5 +1,5 @@ | |||
1 | #ifndef _PPC64_TYPES_H | 1 | #ifndef _ASM_POWERPC_TYPES_H |
2 | #define _PPC64_TYPES_H | 2 | #define _ASM_POWERPC_TYPES_H |
3 | 3 | ||
4 | #ifndef __ASSEMBLY__ | 4 | #ifndef __ASSEMBLY__ |
5 | 5 | ||
@@ -16,7 +16,11 @@ | |||
16 | * 2 of the License, or (at your option) any later version. | 16 | * 2 of the License, or (at your option) any later version. |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #ifdef __powerpc64__ | ||
19 | typedef unsigned int umode_t; | 20 | typedef unsigned int umode_t; |
21 | #else | ||
22 | typedef unsigned short umode_t; | ||
23 | #endif | ||
20 | 24 | ||
21 | /* | 25 | /* |
22 | * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the | 26 | * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the |
@@ -32,8 +36,15 @@ typedef unsigned short __u16; | |||
32 | typedef __signed__ int __s32; | 36 | typedef __signed__ int __s32; |
33 | typedef unsigned int __u32; | 37 | typedef unsigned int __u32; |
34 | 38 | ||
39 | #ifdef __powerpc64__ | ||
35 | typedef __signed__ long __s64; | 40 | typedef __signed__ long __s64; |
36 | typedef unsigned long __u64; | 41 | typedef unsigned long __u64; |
42 | #else | ||
43 | #if defined(__GNUC__) && !defined(__STRICT_ANSI__) | ||
44 | typedef __signed__ long long __s64; | ||
45 | typedef unsigned long long __u64; | ||
46 | #endif | ||
47 | #endif /* __powerpc64__ */ | ||
37 | 48 | ||
38 | typedef struct { | 49 | typedef struct { |
39 | __u32 u[4]; | 50 | __u32 u[4]; |
@@ -45,7 +56,11 @@ typedef struct { | |||
45 | /* | 56 | /* |
46 | * These aren't exported outside the kernel to avoid name space clashes | 57 | * These aren't exported outside the kernel to avoid name space clashes |
47 | */ | 58 | */ |
59 | #ifdef __powerpc64__ | ||
48 | #define BITS_PER_LONG 64 | 60 | #define BITS_PER_LONG 64 |
61 | #else | ||
62 | #define BITS_PER_LONG 32 | ||
63 | #endif | ||
49 | 64 | ||
50 | #ifndef __ASSEMBLY__ | 65 | #ifndef __ASSEMBLY__ |
51 | 66 | ||
@@ -58,8 +73,13 @@ typedef unsigned short u16; | |||
58 | typedef signed int s32; | 73 | typedef signed int s32; |
59 | typedef unsigned int u32; | 74 | typedef unsigned int u32; |
60 | 75 | ||
76 | #ifdef __powerpc64__ | ||
61 | typedef signed long s64; | 77 | typedef signed long s64; |
62 | typedef unsigned long u64; | 78 | typedef unsigned long u64; |
79 | #else | ||
80 | typedef signed long long s64; | ||
81 | typedef unsigned long long u64; | ||
82 | #endif | ||
63 | 83 | ||
64 | typedef __vector128 vector128; | 84 | typedef __vector128 vector128; |
65 | 85 | ||
@@ -72,8 +92,13 @@ typedef struct { | |||
72 | unsigned long env; | 92 | unsigned long env; |
73 | } func_descr_t; | 93 | } func_descr_t; |
74 | 94 | ||
95 | #ifdef CONFIG_LBD | ||
96 | typedef u64 sector_t; | ||
97 | #define HAVE_SECTOR_T | ||
98 | #endif | ||
99 | |||
75 | #endif /* __ASSEMBLY__ */ | 100 | #endif /* __ASSEMBLY__ */ |
76 | 101 | ||
77 | #endif /* __KERNEL__ */ | 102 | #endif /* __KERNEL__ */ |
78 | 103 | ||
79 | #endif /* _PPC64_TYPES_H */ | 104 | #endif /* _ASM_POWERPC_TYPES_H */ |
diff --git a/include/asm-ppc/types.h b/include/asm-ppc/types.h deleted file mode 100644 index 77dc24d7d2ad..000000000000 --- a/include/asm-ppc/types.h +++ /dev/null | |||
@@ -1,69 +0,0 @@ | |||
1 | #ifndef _PPC_TYPES_H | ||
2 | #define _PPC_TYPES_H | ||
3 | |||
4 | #ifndef __ASSEMBLY__ | ||
5 | |||
6 | typedef __signed__ char __s8; | ||
7 | typedef unsigned char __u8; | ||
8 | |||
9 | typedef __signed__ short __s16; | ||
10 | typedef unsigned short __u16; | ||
11 | |||
12 | typedef __signed__ int __s32; | ||
13 | typedef unsigned int __u32; | ||
14 | |||
15 | #if defined(__GNUC__) && !defined(__STRICT_ANSI__) | ||
16 | typedef __signed__ long long __s64; | ||
17 | typedef unsigned long long __u64; | ||
18 | #endif | ||
19 | |||
20 | typedef struct { | ||
21 | __u32 u[4]; | ||
22 | } __vector128; | ||
23 | |||
24 | /* | ||
25 | * XXX allowed outside of __KERNEL__ for now, until glibc gets | ||
26 | * a proper set of asm headers of its own. -- paulus | ||
27 | */ | ||
28 | typedef unsigned short umode_t; | ||
29 | |||
30 | #endif /* __ASSEMBLY__ */ | ||
31 | |||
32 | #ifdef __KERNEL__ | ||
33 | /* | ||
34 | * These aren't exported outside the kernel to avoid name space clashes | ||
35 | */ | ||
36 | #define BITS_PER_LONG 32 | ||
37 | |||
38 | #ifndef __ASSEMBLY__ | ||
39 | |||
40 | #include <linux/config.h> | ||
41 | |||
42 | typedef signed char s8; | ||
43 | typedef unsigned char u8; | ||
44 | |||
45 | typedef signed short s16; | ||
46 | typedef unsigned short u16; | ||
47 | |||
48 | typedef signed int s32; | ||
49 | typedef unsigned int u32; | ||
50 | |||
51 | typedef signed long long s64; | ||
52 | typedef unsigned long long u64; | ||
53 | |||
54 | typedef __vector128 vector128; | ||
55 | |||
56 | /* DMA addresses are 32-bits wide */ | ||
57 | typedef u32 dma_addr_t; | ||
58 | typedef u64 dma64_addr_t; | ||
59 | |||
60 | #ifdef CONFIG_LBD | ||
61 | typedef u64 sector_t; | ||
62 | #define HAVE_SECTOR_T | ||
63 | #endif | ||
64 | |||
65 | #endif /* __ASSEMBLY__ */ | ||
66 | |||
67 | #endif /* __KERNEL__ */ | ||
68 | |||
69 | #endif | ||