diff options
author | Kyle McMartin <kyle@mcmartin.ca> | 2009-03-15 16:44:25 -0400 |
---|---|---|
committer | Kyle McMartin <kyle@mcmartin.ca> | 2009-04-02 00:16:24 -0400 |
commit | bf589a349b9a41ea202ddb8115b18f543b944bfd (patch) | |
tree | b7b629d5f94b331ccf4b7c114c783675696d4dfd /arch/parisc | |
parent | bb7350194130ae6bd3fdec16fe1b7597c1c0bb8d (diff) |
parisc: Move kernel Elf_Fdesc define to <asm/elf.h>
elf.h probably won't be exported to userspace, but play it safe
and cram it in a #ifdef __KERNEL__ guard.
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/include/asm/elf.h | 10 | ||||
-rw-r--r-- | arch/parisc/kernel/module.c | 4 |
2 files changed, 10 insertions, 4 deletions
diff --git a/arch/parisc/include/asm/elf.h b/arch/parisc/include/asm/elf.h index 7fa675799e6d..9c802eb4be84 100644 --- a/arch/parisc/include/asm/elf.h +++ b/arch/parisc/include/asm/elf.h | |||
@@ -168,6 +168,16 @@ typedef struct elf64_fdesc { | |||
168 | __u64 gp; | 168 | __u64 gp; |
169 | } Elf64_Fdesc; | 169 | } Elf64_Fdesc; |
170 | 170 | ||
171 | #ifdef __KERNEL__ | ||
172 | |||
173 | #ifdef CONFIG_64BIT | ||
174 | #define Elf_Fdesc Elf64_Fdesc | ||
175 | #else | ||
176 | #define Elf_Fdesc Elf32_Fdesc | ||
177 | #endif /*CONFIG_64BIT*/ | ||
178 | |||
179 | #endif /*__KERNEL__*/ | ||
180 | |||
171 | /* Legal values for p_type field of Elf32_Phdr/Elf64_Phdr. */ | 181 | /* Legal values for p_type field of Elf32_Phdr/Elf64_Phdr. */ |
172 | 182 | ||
173 | #define PT_HP_TLS (PT_LOOS + 0x0) | 183 | #define PT_HP_TLS (PT_LOOS + 0x0) |
diff --git a/arch/parisc/kernel/module.c b/arch/parisc/kernel/module.c index 9013243cecca..3439cbd896b5 100644 --- a/arch/parisc/kernel/module.c +++ b/arch/parisc/kernel/module.c | |||
@@ -115,8 +115,6 @@ struct got_entry { | |||
115 | Elf32_Addr addr; | 115 | Elf32_Addr addr; |
116 | }; | 116 | }; |
117 | 117 | ||
118 | #define Elf_Fdesc Elf32_Fdesc | ||
119 | |||
120 | struct stub_entry { | 118 | struct stub_entry { |
121 | Elf32_Word insns[2]; /* each stub entry has two insns */ | 119 | Elf32_Word insns[2]; /* each stub entry has two insns */ |
122 | }; | 120 | }; |
@@ -125,8 +123,6 @@ struct got_entry { | |||
125 | Elf64_Addr addr; | 123 | Elf64_Addr addr; |
126 | }; | 124 | }; |
127 | 125 | ||
128 | #define Elf_Fdesc Elf64_Fdesc | ||
129 | |||
130 | struct stub_entry { | 126 | struct stub_entry { |
131 | Elf64_Word insns[4]; /* each stub entry has four insns */ | 127 | Elf64_Word insns[4]; /* each stub entry has four insns */ |
132 | }; | 128 | }; |