Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 100080
Collapse All | Expand All

(-)linux-2.6.11.orig/include/asm-sh/thread_info.h (-4 lines)
Lines 10-17 Link Here
10
 *  - Incorporating suggestions made by Linus Torvalds and Dave Miller
10
 *  - Incorporating suggestions made by Linus Torvalds and Dave Miller
11
 */
11
 */
12
12
13
#ifdef __KERNEL__
14
15
#ifndef __ASSEMBLY__
13
#ifndef __ASSEMBLY__
16
#include <asm/processor.h>
14
#include <asm/processor.h>
17
15
Lines 97-102 Link Here
97
#define _TIF_WORK_MASK		0x000000FE	/* work to do on interrupt/exception return */
95
#define _TIF_WORK_MASK		0x000000FE	/* work to do on interrupt/exception return */
98
#define _TIF_ALLWORK_MASK	0x000000FF	/* work to do on any return to u-space */
96
#define _TIF_ALLWORK_MASK	0x000000FF	/* work to do on any return to u-space */
99
97
100
#endif /* __KERNEL__ */
101
102
#endif /* __ASM_SH_THREAD_INFO_H */
98
#endif /* __ASM_SH_THREAD_INFO_H */
(-)linux-2.6.11.orig/include/asm-sh/types.h (-4 / +8 lines)
Lines 19-28 Link Here
19
typedef __signed__ int __s32;
19
typedef __signed__ int __s32;
20
typedef unsigned int __u32;
20
typedef unsigned int __u32;
21
21
22
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
22
#ifndef __GNUC__
23
typedef __signed__ long long __s64;
23
# ifndef __extension__
24
typedef unsigned long long __u64;
24
#  define __extension__
25
#endif
25
# endif /* __extension__ */
26
#endif /* __GNUC__ */
27
28
__extension__ typedef __signed__ long long __s64;
29
__extension__ typedef unsigned long long __u64;
26
30
27
#endif /* __ASSEMBLY__ */
31
#endif /* __ASSEMBLY__ */
28
32

Return to bug 100080