diff options
| author | Mark Cave-Ayland | 2022-06-24 15:40:39 +0200 |
|---|---|---|
| committer | Mark Cave-Ayland | 2022-06-26 19:40:12 +0200 |
| commit | 7b9fff290c20ee65c5deba0ad98f97529061d231 (patch) | |
| tree | 58540a0e7fe7ae3148219706817c8afaa8e8b2a6 /include/hw/input | |
| parent | pckbd: add mask qdev property to I8042_MMIO device (diff) | |
| download | qemu-7b9fff290c20ee65c5deba0ad98f97529061d231.tar.gz qemu-7b9fff290c20ee65c5deba0ad98f97529061d231.tar.xz qemu-7b9fff290c20ee65c5deba0ad98f97529061d231.zip | |
pckbd: add size qdev property to I8042_MMIO device
This will soon be used to set the size of the register memory region using a
qdev property.
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-25-mark.cave-ayland@ilande.co.uk>
Diffstat (limited to 'include/hw/input')
| -rw-r--r-- | include/hw/input/i8042.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/input/i8042.h b/include/hw/input/i8042.h index b7df9ace6e..ac4098b957 100644 --- a/include/hw/input/i8042.h +++ b/include/hw/input/i8042.h @@ -57,6 +57,7 @@ struct MMIOKBDState { SysBusDevice parent_obj; KBDState kbd; + uint32_t size; }; #define I8042_A20_LINE "a20" |
