diff options
author | Satoru Takeuchi <takeuchi_satoru@jp.fujitsu.com> | 2006-04-20 18:49:41 +0900 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2006-04-20 17:06:35 -0700 |
commit | ee6d4b6ef8df79893d6d4a653b16c99bdb6d2784 (patch) | |
tree | 81554409513864f9bcd60965b20c9b421f104cb0 /arch/ia64/ia32/binfmt_elf32.c | |
parent | 86db2f4239e2556cd37b853c2307aa9d43041458 (diff) | |
download | kernel_samsung_espresso10-ee6d4b6ef8df79893d6d4a653b16c99bdb6d2784.zip kernel_samsung_espresso10-ee6d4b6ef8df79893d6d4a653b16c99bdb6d2784.tar.gz kernel_samsung_espresso10-ee6d4b6ef8df79893d6d4a653b16c99bdb6d2784.tar.bz2 |
[IA64] eliminate compile time warnings
This is a trivial patch to remove following compile time warning:
arch/ia64/ia32/../../../fs/binfmt_elf.c:508: warning: 'randomize_stack_top' defined but not used
Signed-off-by: Satoru Takeuchi <takeuchi_satoru@jp.fujitsu.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/ia32/binfmt_elf32.c')
-rw-r--r-- | arch/ia64/ia32/binfmt_elf32.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/ia64/ia32/binfmt_elf32.c b/arch/ia64/ia32/binfmt_elf32.c index 4e7a6a1..da03c06 100644 --- a/arch/ia64/ia32/binfmt_elf32.c +++ b/arch/ia64/ia32/binfmt_elf32.c @@ -35,6 +35,9 @@ extern void ia64_elf32_init (struct pt_regs *regs); static void elf32_set_personality (void); +static unsigned long __attribute ((unused)) +randomize_stack_top(unsigned long stack_top); + #define setup_arg_pages(bprm,tos,exec) ia32_setup_arg_pages(bprm,exec) #define elf_map elf32_map |