aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBernhard Beschow <shentey@gmail.com>2022-06-03 20:50:39 +0200
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2022-06-11 11:44:50 +0200
commite3d198eed1a2f6cc34f781fb3fe5c57caa66cc7c (patch)
tree1be633d108c9459d0203441b205fd89a2e7ed58e /include
parentc397a2d3e45ea72d2513d95c4e5d148fbc301131 (diff)
downloadqemu-e3d198eed1a2f6cc34f781fb3fe5c57caa66cc7c.zip
qemu-e3d198eed1a2f6cc34f781fb3fe5c57caa66cc7c.tar.gz
qemu-e3d198eed1a2f6cc34f781fb3fe5c57caa66cc7c.tar.bz2
hw/isa/piix4: Factor out ISABus retrieval from piix4_create()
Modernizes the code. Signed-off-by: Bernhard Beschow <shentey@gmail.com> Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20220603185045.143789-6-shentey@gmail.com> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'include')
-rw-r--r--include/hw/southbridge/piix.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/southbridge/piix.h b/include/hw/southbridge/piix.h
index 3b97186..dab5c97 100644
--- a/include/hw/southbridge/piix.h
+++ b/include/hw/southbridge/piix.h
@@ -70,6 +70,6 @@ DECLARE_INSTANCE_CHECKER(PIIX3State, PIIX3_PCI_DEVICE,
PIIX3State *piix3_create(PCIBus *pci_bus, ISABus **isa_bus);
-DeviceState *piix4_create(PCIBus *pci_bus, ISABus **isa_bus, I2CBus **smbus);
+DeviceState *piix4_create(PCIBus *pci_bus, I2CBus **smbus);
#endif