aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-sparc64/elf.h
diff options
context:
space:
mode:
authorKirill A. Shutemov <k.shutemov@gmail.com>2008-02-07 03:15:54 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-07 11:42:30 -0500
commit516c25a86f6bdad77ded01a43c52c5569c8d690c (patch)
treee7404e73fd103f70958ccb1bc1c74ff1c7ff48bf /include/asm-sparc64/elf.h
parentc1445db9f72db0537c43a2eab6e1b0f6741162f5 (diff)
Cleanup asm/{elf,page,user}.h: #ifdef __KERNEL__ is no longer needed
asm/elf.h, asm/page.h and asm/user.h don't export to userspace now, so we can drop #ifdef __KERNEL__ for them. [k.shutemov@gmail.com: remove #ifdef __KERNEL_] Signed-off-by: Kirill A. Shutemov <k.shutemov@gmail.com> Reviewed-by: David Woodhouse <dwmw2@infradead.org> Cc: <linux-arch@vger.kernel.org> Signed-off-by: Kirill A. Shutemov <k.shutemov@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-sparc64/elf.h')
-rw-r--r--include/asm-sparc64/elf.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/asm-sparc64/elf.h b/include/asm-sparc64/elf.h
index 8653e8665009..dc7bc63e507e 100644
--- a/include/asm-sparc64/elf.h
+++ b/include/asm-sparc64/elf.h
@@ -7,11 +7,9 @@
7 */ 7 */
8 8
9#include <asm/ptrace.h> 9#include <asm/ptrace.h>
10#ifdef __KERNEL__
11#include <asm/processor.h> 10#include <asm/processor.h>
12#include <asm/uaccess.h> 11#include <asm/uaccess.h>
13#include <asm/spitfire.h> 12#include <asm/spitfire.h>
14#endif
15 13
16/* 14/*
17 * Sparc section types 15 * Sparc section types
@@ -175,7 +173,6 @@ static inline unsigned int sparc64_elf_hwcap(void)
175 173
176#define ELF_PLATFORM (NULL) 174#define ELF_PLATFORM (NULL)
177 175
178#ifdef __KERNEL__
179#define SET_PERSONALITY(ex, ibcs2) \ 176#define SET_PERSONALITY(ex, ibcs2) \
180do { unsigned long new_flags = current_thread_info()->flags; \ 177do { unsigned long new_flags = current_thread_info()->flags; \
181 new_flags &= _TIF_32BIT; \ 178 new_flags &= _TIF_32BIT; \
@@ -194,6 +191,5 @@ do { unsigned long new_flags = current_thread_info()->flags; \
194 else if (current->personality != PER_LINUX32) \ 191 else if (current->personality != PER_LINUX32) \
195 set_personality(PER_LINUX); \ 192 set_personality(PER_LINUX); \
196} while (0) 193} while (0)
197#endif
198 194
199#endif /* !(__ASM_SPARC64_ELF_H) */ 195#endif /* !(__ASM_SPARC64_ELF_H) */