Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

isa: Remove ISA_BUS_API selection for ISA_BUS

ISA_BUS_API is selected by drivers themselves when necessary. The
ISA_BUS Kconfig option is now simply a mask for true ISA device drivers
and relevant configuration. For now, the ISA_BUS Kconfig option is only
available for X86, but may be added for other arch builds in the future
if the need arises.

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

authored by

William Breathitt Gray and committed by
Linus Walleij
17a2a129 35decc80

+6 -4
+6 -4
arch/x86/Kconfig
··· 2635 2635 source "drivers/pci/Kconfig" 2636 2636 2637 2637 config ISA_BUS 2638 - bool "ISA-style bus support on modern systems" if EXPERT 2639 - select ISA_BUS_API 2638 + bool "ISA bus support on modern systems" if EXPERT 2640 2639 help 2641 - Enables ISA-style drivers on modern systems. This is necessary to 2642 - support PC/104 devices on X86_64 platforms. 2640 + Expose ISA bus device drivers and options available for selection and 2641 + configuration. Enable this option if your target machine has an ISA 2642 + bus. ISA is an older system, displaced by PCI and newer bus 2643 + architectures -- if your target machine is modern, it probably does 2644 + not have an ISA bus. 2643 2645 2644 2646 If unsure, say N. 2645 2647