summaryrefslogtreecommitdiffstats
path: root/hw/hppa
diff options
context:
space:
mode:
authorMark Cave-Ayland2022-05-04 11:25:42 +0200
committerMark Cave-Ayland2022-05-08 19:52:37 +0200
commit954f6f7564ef48688d2146e498cb012605d461c6 (patch)
tree3c00b3c49390ffcaf8b4c283427ae683bcd5b610 /hw/hppa
parentlasi: fix serial port initialisation (diff)
downloadqemu-954f6f7564ef48688d2146e498cb012605d461c6.tar.gz
qemu-954f6f7564ef48688d2146e498cb012605d461c6.tar.xz
qemu-954f6f7564ef48688d2146e498cb012605d461c6.zip
lasi: update lasi_initfn() to return LASIState
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Acked-by: Helge Deller <deller@gmx.de> Message-Id: <20220504092600.10048-33-mark.cave-ayland@ilande.co.uk> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Diffstat (limited to 'hw/hppa')
-rw-r--r--hw/hppa/hppa_sys.h3
-rw-r--r--hw/hppa/lasi.c4
-rw-r--r--hw/hppa/machine.c3
3 files changed, 6 insertions, 4 deletions
diff --git a/hw/hppa/hppa_sys.h b/hw/hppa/hppa_sys.h
index 0929dedded..3832b787d1 100644
--- a/hw/hppa/hppa_sys.h
+++ b/hw/hppa/hppa_sys.h
@@ -7,10 +7,11 @@
#include "hw/pci/pci_host.h"
#include "hw/boards.h"
#include "hw/intc/i8259.h"
+#include "lasi.h"
#include "hppa_hardware.h"
-DeviceState *lasi_initfn(MemoryRegion *);
+LasiState *lasi_initfn(MemoryRegion *);
#define enable_lasi_lan() 0
/* hppa_pci.c. */
diff --git a/hw/hppa/lasi.c b/hw/hppa/lasi.c
index 219eb779f3..65139bb29b 100644
--- a/hw/hppa/lasi.c
+++ b/hw/hppa/lasi.c
@@ -231,7 +231,7 @@ static void lasi_set_irq(void *opaque, int irq, int level)
}
}
-DeviceState *lasi_initfn(MemoryRegion *address_space)
+LasiState *lasi_initfn(MemoryRegion *address_space)
{
DeviceState *dev;
@@ -260,7 +260,7 @@ DeviceState *lasi_initfn(MemoryRegion *address_space)
lasips2_init(address_space, LASI_PS2KBD_HPA,
qdev_get_gpio_in(dev, LASI_IRQ_PS2KBD_HPA));
- return dev;
+ return LASI_CHIP(dev);
}
static void lasi_reset(DeviceState *dev)
diff --git a/hw/hppa/machine.c b/hw/hppa/machine.c
index 6618bce435..c815dde305 100644
--- a/hw/hppa/machine.c
+++ b/hw/hppa/machine.c
@@ -18,6 +18,7 @@
#include "hw/net/lasi_82596.h"
#include "hw/nmi.h"
#include "hw/pci-host/dino.h"
+#include "lasi.h"
#include "hppa_sys.h"
#include "qemu/units.h"
#include "qapi/error.h"
@@ -175,7 +176,7 @@ static void machine_hppa_init(MachineState *machine)
/* Init Lasi chip */
- lasi_dev = lasi_initfn(addr_space);
+ lasi_dev = DEVICE(lasi_initfn(addr_space));
memory_region_add_subregion(addr_space, LASI_HPA,
sysbus_mmio_get_region(
SYS_BUS_DEVICE(lasi_dev), 0));