diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2020-12-04 20:03:08 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2021-01-06 14:42:50 +0100 |
commit | 492ed38192fccb92022b7a6d3b2751a09a3494c6 (patch) | |
tree | 8dc743a09f7ef2c3fcb7de198797e0ad738d4478 /fs/compat_binfmt_elf.c | |
parent | Kconfig: regularize selection of CONFIG_BINFMT_ELF (diff) | |
download | linux-492ed38192fccb92022b7a6d3b2751a09a3494c6.tar.xz linux-492ed38192fccb92022b7a6d3b2751a09a3494c6.zip |
compat_binfmt_elf: don't bother with undef of ELF_ARCH
It's not used anywhere downstream (and never had been, AFAICS).
Theoretically, fs/binfmt_elf.c does use it, but only in the
non-regset coredump handling and all biarch architectures
end up with that ifdefed out.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/compat_binfmt_elf.c')
-rw-r--r-- | fs/compat_binfmt_elf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/compat_binfmt_elf.c b/fs/compat_binfmt_elf.c index a6321415aba0..e40bdbdc094f 100644 --- a/fs/compat_binfmt_elf.c +++ b/fs/compat_binfmt_elf.c @@ -62,7 +62,6 @@ * differ from the native ones, or omitted when they match. */ -#undef ELF_ARCH #undef elf_check_arch #define elf_check_arch compat_elf_check_arch |