]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
hw/pci-host: Rename incorrectly named 'piix' as 'i440fx'
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Sat, 2 Feb 2019 20:03:07 +0000 (21:03 +0100)
committerPhilippe Mathieu-Daudé <philmd@redhat.com>
Tue, 5 Nov 2019 22:33:12 +0000 (23:33 +0100)
We moved all the PIIX3 southbridge code out of hw/pci-host/piix.c,
it now only contains i440FX northbridge code.
Rename it to match the chipset modelled.

Reviewed-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
MAINTAINERS
hw/i386/Kconfig
hw/pci-host/Kconfig
hw/pci-host/Makefile.objs
hw/pci-host/i440fx.c [moved from hw/pci-host/piix.c with 100% similarity]

index e299247f10fdcb5b97c0f2c4d2475f29a1339a51..363e72a467f64a0d4846324ddb36c5ef49fff38f 100644 (file)
@@ -1241,7 +1241,7 @@ M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
 S: Supported
 F: include/hw/i386/
 F: hw/i386/
-F: hw/pci-host/piix.c
+F: hw/pci-host/i440fx.c
 F: hw/pci-host/q35.c
 F: hw/pci-host/pam.c
 F: include/hw/pci-host/i440fx.h
index d420b35548c95a3af8cd5c533bfcced30adb0e67..5a494342eaa0ca004bb20aa0503389699f2b92a3 100644 (file)
@@ -60,7 +60,7 @@ config I440FX
     select PC_PCI
     select PC_ACPI
     select ACPI_SMBUS
-    select PCI_PIIX
+    select PCI_I440FX
     select PIIX3
     select IDE_PIIX
     select DIMM
index 397043b289b99c1ece8de4f59da07996a70cd7bd..b0aa8351c4a367020119172edbad199c385b0efe 100644 (file)
@@ -28,7 +28,7 @@ config PCI_SABRE
     select PCI
     bool
 
-config PCI_PIIX
+config PCI_I440FX
     bool
     select PCI
     select PAM
index a9cd3e022d53d9d25d9c1287c0264e1a8e013993..efd752b7662e0c7acd625af0b006183570381bb6 100644 (file)
@@ -13,7 +13,7 @@ common-obj-$(CONFIG_VERSATILE_PCI) += versatile.o
 
 common-obj-$(CONFIG_PCI_SABRE) += sabre.o
 common-obj-$(CONFIG_FULONG) += bonito.o
-common-obj-$(CONFIG_PCI_PIIX) += piix.o
+common-obj-$(CONFIG_PCI_I440FX) += i440fx.o
 common-obj-$(CONFIG_PCI_EXPRESS_Q35) += q35.o
 common-obj-$(CONFIG_PCI_EXPRESS_GENERIC_BRIDGE) += gpex.o
 common-obj-$(CONFIG_PCI_EXPRESS_XILINX) += xilinx-pcie.o
similarity index 100%
rename from hw/pci-host/piix.c
rename to hw/pci-host/i440fx.c