aboutsummaryrefslogtreecommitdiff
path: root/hw/isa
diff options
context:
space:
mode:
authorBernhard Beschow <shentey@gmail.com>2022-06-03 20:50:45 +0200
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2022-06-11 11:44:50 +0200
commit988fb613215993dd0ce642b89ca8182c479d39dd (patch)
tree8607ece4df8b9a64a385eeb876af87ce552134d5 /hw/isa
parent6e8791fb6170a3eca90485056813e8eccb9080a9 (diff)
downloadqemu-988fb613215993dd0ce642b89ca8182c479d39dd.zip
qemu-988fb613215993dd0ce642b89ca8182c479d39dd.tar.gz
qemu-988fb613215993dd0ce642b89ca8182c479d39dd.tar.bz2
hw/isa/piix3: Inline and remove piix3_create()
During the previous changesets piix3_create() became a trivial wrapper around more generic functions. Modernize the code. Signed-off-by: Bernhard Beschow <shentey@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Message-Id: <20220603185045.143789-12-shentey@gmail.com> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'hw/isa')
-rw-r--r--hw/isa/piix3.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/hw/isa/piix3.c b/hw/isa/piix3.c
index d57a7fe..6388558 100644
--- a/hw/isa/piix3.c
+++ b/hw/isa/piix3.c
@@ -416,16 +416,3 @@ static void piix3_register_types(void)
}
type_init(piix3_register_types)
-
-PIIX3State *piix3_create(PCIBus *pci_bus)
-{
- PIIX3State *piix3;
- PCIDevice *pci_dev;
- const char *type = xen_enabled() ? TYPE_PIIX3_XEN_DEVICE
- : TYPE_PIIX3_DEVICE;
-
- pci_dev = pci_create_simple_multifunction(pci_bus, -1, true, type);
- piix3 = PIIX3_PCI_DEVICE(pci_dev);
-
- return piix3;
-}