diff options
author | Yury Norov <ynorov@marvell.com> | 2019-05-07 13:52:28 -0700 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2019-05-14 11:46:12 +0100 |
commit | 84c187afa210fcd5e34a7506c6e0dc2d69bc6641 (patch) | |
tree | 61ac6ba284a3aa2ec39054f25cd4e1568c482bb5 /arch/arm64 | |
parent | 0e4add4ae79e4466ae2a7e7772dfbe39fb28787a (diff) | |
download | linux-84c187afa210fcd5e34a7506c6e0dc2d69bc6641.tar.bz2 |
arm64: don't trash config with compat symbol if COMPAT is disabled
ARCH_WANT_COMPAT_IPC_PARSE_VERSION is selected unconditionally. It
makes little sense if kernel is compiled without COMPAT support.
Fix it.
This patch makes no functional changes since all existing code which
is guarded with ARCH_WANT_COMPAT_IPC_PARSE_VERSION is also guarded
with COMPAT.
Signed-off-by: Yury Norov <ynorov@marvell.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig index 1c0cb5131c2a..a4c34934bc52 100644 --- a/arch/arm64/Kconfig +++ b/arch/arm64/Kconfig @@ -65,7 +65,7 @@ config ARM64 select ARCH_SUPPORTS_ATOMIC_RMW select ARCH_SUPPORTS_INT128 if GCC_VERSION >= 50000 || CC_IS_CLANG select ARCH_SUPPORTS_NUMA_BALANCING - select ARCH_WANT_COMPAT_IPC_PARSE_VERSION + select ARCH_WANT_COMPAT_IPC_PARSE_VERSION if COMPAT select ARCH_WANT_FRAME_POINTERS select ARCH_HAS_UBSAN_SANITIZE_ALL select ARM_AMBA |