Skip to content

Commit 3e14d9a

Browse files
arndbgregkh
authored andcommitted
x86/platform: Only allow CONFIG_EISA for 32-bit
[ Upstream commit 976ba8d ] The CONFIG_EISA menu was cleaned up in 2018, but this inadvertently brought the option back on 64-bit machines: ISA remains guarded by a CONFIG_X86_32 check, but EISA no longer depends on ISA. The last Intel machines ith EISA support used a 82375EB PCI/EISA bridge from 1993 that could be paired with the 440FX chipset on early Pentium-II CPUs, long before the first x86-64 products. Fixes: 6630a8e ("eisa: consolidate EISA Kconfig entry in drivers/eisa") Signed-off-by: Arnd Bergmann <[email protected]> Signed-off-by: Ingo Molnar <[email protected]> Cc: Linus Torvalds <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Sasha Levin <[email protected]>
1 parent a086e7c commit 3e14d9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/x86/Kconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ config X86
226226
select HAVE_SAMPLE_FTRACE_DIRECT_MULTI if X86_64
227227
select HAVE_EBPF_JIT
228228
select HAVE_EFFICIENT_UNALIGNED_ACCESS
229-
select HAVE_EISA
229+
select HAVE_EISA if X86_32
230230
select HAVE_EXIT_THREAD
231231
select HAVE_GUP_FAST
232232
select HAVE_FENTRY if X86_64 || DYNAMIC_FTRACE

0 commit comments

Comments
 (0)