aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/include/asm/a.out.h
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@kernel.org>2008-06-28 00:12:52 +0300
committerDavid Woodhouse <David.Woodhouse@intel.com>2008-09-06 19:30:24 +0100
commit9d5a9e74655b9d04d0ec9c8e47801163b7b74211 (patch)
tree8399629429e5f2b5b1d6ed91b50401db6226337f /arch/ia64/include/asm/a.out.h
parentIntroduce HAVE_AOUT symbol to remove hard-coded arch list for BINFMT_AOUT (diff)
downloadlinux-dev-9d5a9e74655b9d04d0ec9c8e47801163b7b74211.tar.xz
linux-dev-9d5a9e74655b9d04d0ec9c8e47801163b7b74211.zip
Remove asm/a.out.h files for all architectures without a.out support.
This patch also includes the required removal of (unused) inclusion of <asm/a.out.h> <linux/a.out.h>'s in the arch/ code for these architectures. [dwmw2: updated for 2.6.27-rc] Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'arch/ia64/include/asm/a.out.h')
-rw-r--r--arch/ia64/include/asm/a.out.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/arch/ia64/include/asm/a.out.h b/arch/ia64/include/asm/a.out.h
deleted file mode 100644
index 193dcfb67596..000000000000
--- a/arch/ia64/include/asm/a.out.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef _ASM_IA64_A_OUT_H
-#define _ASM_IA64_A_OUT_H
-
-/*
- * No a.out format has been (or should be) defined so this file is
- * just a dummy that allows us to get binfmt_elf compiled. It
- * probably would be better to clean up binfmt_elf.c so it does not
- * necessarily depend on there being a.out support.
- *
- * Modified 1998-2002
- * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co.
- */
-
-#include <linux/types.h>
-
-struct exec {
- unsigned long a_info;
- unsigned long a_text;
- unsigned long a_data;
- unsigned long a_bss;
- unsigned long a_entry;
-};
-
-#define N_TXTADDR(x) 0
-#define N_DATADDR(x) 0
-#define N_BSSADDR(x) 0
-#define N_DRSIZE(x) 0
-#define N_TRSIZE(x) 0
-#define N_SYMSIZE(x) 0
-#define N_TXTOFF(x) 0
-
-#endif /* _ASM_IA64_A_OUT_H */