mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
hw/block/fdc: Extract ISA floppy controllers to fdc-isa.c
Some machines use floppy controllers via the SysBus interface,
and don't need to pull in all the ISA code.
Extract the ISA specific code to a new unit: fdc-isa.c, and
add a new Kconfig symbol: "FDC_ISA".
This allows us to remove the FIXME from commit dd0ff8191a
("isa: express SuperIO dependencies with Kconfig").
Reviewed-by: John Snow <jsnow@redhat.com>
Acked-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20210614193220.2007159-5-philmd@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
parent
5a5d2f3d26
commit
72ea60e411
8 changed files with 332 additions and 274 deletions
|
@ -17,7 +17,7 @@ config ISA_SUPERIO
|
|||
bool
|
||||
select ISA_BUS
|
||||
select PCKBD
|
||||
select FDC
|
||||
select FDC_ISA
|
||||
|
||||
config PC87312
|
||||
bool
|
||||
|
@ -28,7 +28,7 @@ config PC87312
|
|||
select MC146818RTC
|
||||
select SERIAL_ISA
|
||||
select PARALLEL
|
||||
select FDC
|
||||
select FDC_ISA
|
||||
select IDE_ISA
|
||||
|
||||
config PIIX3
|
||||
|
@ -47,7 +47,7 @@ config VT82C686
|
|||
select ISA_SUPERIO
|
||||
select ACPI_SMBUS
|
||||
select SERIAL_ISA
|
||||
select FDC
|
||||
select FDC_ISA
|
||||
select USB_UHCI
|
||||
select APM
|
||||
|
||||
|
@ -56,7 +56,7 @@ config SMC37C669
|
|||
select ISA_SUPERIO
|
||||
select SERIAL_ISA
|
||||
select PARALLEL
|
||||
select FDC
|
||||
select FDC_ISA
|
||||
|
||||
config LPC_ICH9
|
||||
bool
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue