[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 2/9] isa: clean up Kconfig selections for ISA_SUPERIO
From: |
Paolo Bonzini |
Subject: |
[PATCH v3 2/9] isa: clean up Kconfig selections for ISA_SUPERIO |
Date: |
Tue, 13 Feb 2024 16:49:57 +0100 |
All users of ISA_SUPERIO include a floppy disk controller, serial port
and parallel port via the automatic creation mechanism of isa-superio.c.
Select the symbol and remove it from the dependents.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
hw/isa/Kconfig | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/hw/isa/Kconfig b/hw/isa/Kconfig
index 040a18c0709..7884179d08b 100644
--- a/hw/isa/Kconfig
+++ b/hw/isa/Kconfig
@@ -17,7 +17,11 @@ config ISA_SUPERIO
bool
select ISA_BUS
select PCKBD
+ select PARALLEL
+ select SERIAL_ISA
select FDC_ISA
+ # Some users of ISA_SUPERIO do not use it
+ #select IDE_ISA
config PC87312
bool
@@ -26,9 +30,6 @@ config PC87312
select I8254
select I8257
select MC146818RTC
- select SERIAL_ISA
- select PARALLEL
- select FDC_ISA
select IDE_ISA
config PIIX
@@ -49,8 +50,6 @@ config VT82C686
select ISA_SUPERIO
select ACPI
select ACPI_SMBUS
- select SERIAL_ISA
- select FDC_ISA
select USB_UHCI
select APM
select I8254
@@ -58,14 +57,10 @@ config VT82C686
select I8259
select IDE_VIA
select MC146818RTC
- select PARALLEL
config SMC37C669
bool
select ISA_SUPERIO
- select SERIAL_ISA
- select PARALLEL
- select FDC_ISA
config LPC_ICH9
bool
--
2.43.0
- [PATCH v3 0/9] mips: do not list individual devices from configs/, Paolo Bonzini, 2024/02/13
- [PATCH v3 1/9] usb: inline device creation functions, Paolo Bonzini, 2024/02/13
- [PATCH v3 3/9] hw/mips/Kconfig: Remove ISA dependencies from MIPSsim board, Paolo Bonzini, 2024/02/13
- [PATCH v3 2/9] isa: clean up Kconfig selections for ISA_SUPERIO,
Paolo Bonzini <=
- [PATCH v3 4/9] isa: fix ISA_SUPERIO dependencies, Paolo Bonzini, 2024/02/13
- [PATCH v3 5/9] isa: specify instance_size in isa_superio_type_info, Paolo Bonzini, 2024/02/13
- [PATCH v3 6/9] isa: extract FDC37M81X to a separate file, Paolo Bonzini, 2024/02/13
- [PATCH v3 7/9] mips: allow compiling out CONFIG_MIPS_ITU, Paolo Bonzini, 2024/02/13
- [PATCH v3 9/9] mips: do not list individual devices from configs/, Paolo Bonzini, 2024/02/13
- [PATCH v3 8/9] mips/loongson3_virt: do not require CONFIG_USB, Paolo Bonzini, 2024/02/13