diff options
author | Mark Cave-Ayland | 2022-06-24 15:40:59 +0200 |
---|---|---|
committer | Mark Cave-Ayland | 2022-06-26 19:40:12 +0200 |
commit | 42119fdb2e851b2a0a6cc09197c33ad943dcb6e9 (patch) | |
tree | 99344540ac76d2fe3c7e9ccbfe26cd5f55d8e232 /include | |
parent | lasips2: move initialisation of PS2 ports from lasi_initfn() to lasi_init() (diff) | |
download | qemu-42119fdb2e851b2a0a6cc09197c33ad943dcb6e9.tar.gz qemu-42119fdb2e851b2a0a6cc09197c33ad943dcb6e9.tar.xz qemu-42119fdb2e851b2a0a6cc09197c33ad943dcb6e9.zip |
lasips2: add base property
This is in preparation for handling vmstate_register() within the device.
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Acked-by: Helge Deller <deller@gmx.de>
Message-Id: <20220624134109.881989-45-mark.cave-ayland@ilande.co.uk>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/input/lasips2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/input/lasips2.h b/include/hw/input/lasips2.h index b9723073e1..7e4437b925 100644 --- a/include/hw/input/lasips2.h +++ b/include/hw/input/lasips2.h @@ -25,6 +25,7 @@ typedef struct LASIPS2Port { struct LASIPS2State { SysBusDevice parent_obj; + hwaddr base; LASIPS2Port kbd; LASIPS2Port mouse; qemu_irq irq; |