diff options
| author | Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> | 2022-06-24 14:40:57 +0100 |
|---|---|---|
| committer | Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> | 2022-06-26 18:40:12 +0100 |
| commit | 6479296fe561cc3aacc3ee99adf02ca7d2120713 (patch) | |
| tree | 5398b269356b88b36bfd661c6691a2696f2e4cd8 /include/hw/input/lasips2.h | |
| parent | 63195aa5a55a885a5c56b7103eb6e698abf2b95a (diff) | |
| download | focaccia-qemu-6479296fe561cc3aacc3ee99adf02ca7d2120713.tar.gz focaccia-qemu-6479296fe561cc3aacc3ee99adf02ca7d2120713.zip | |
lasips2: move mapping of LASIPS2 registers to HPPA machine
Now that the register memory regions are exposed as SysBus memory regions, move the mapping of the LASIPS2 registers from lasips2_initfn() to the HPPA machine (which is its only user). Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Acked-by: Helge Deller <deller@gmx.de> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20220624134109.881989-43-mark.cave-ayland@ilande.co.uk>
Diffstat (limited to 'include/hw/input/lasips2.h')
| -rw-r--r-- | include/hw/input/lasips2.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/hw/input/lasips2.h b/include/hw/input/lasips2.h index 5a35c22f73..b9723073e1 100644 --- a/include/hw/input/lasips2.h +++ b/include/hw/input/lasips2.h @@ -33,7 +33,6 @@ struct LASIPS2State { #define TYPE_LASIPS2 "lasips2" OBJECT_DECLARE_SIMPLE_TYPE(LASIPS2State, LASIPS2) -LASIPS2State *lasips2_initfn(MemoryRegion *address_space, hwaddr base, - qemu_irq irq); +LASIPS2State *lasips2_initfn(hwaddr base, qemu_irq irq); #endif /* HW_INPUT_LASIPS2_H */ |