diff options
author | Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> | 2022-06-24 14:40:42 +0100 |
---|---|---|
committer | Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> | 2022-06-26 18:40:12 +0100 |
commit | 903dd0e49b5140df55d6f77f97c741f99346c23e (patch) | |
tree | 267e8eb3ca419264a563c0cd419c9ca43694cab0 /include/hw | |
parent | 47fc74154c1dd68d70209a87213805fdad0d2790 (diff) | |
download | qemu-903dd0e49b5140df55d6f77f97c741f99346c23e.zip qemu-903dd0e49b5140df55d6f77f97c741f99346c23e.tar.gz qemu-903dd0e49b5140df55d6f77f97c741f99346c23e.tar.bz2 |
pckbd: alter i8042_mm_init() to return a I8042_MMIO device
This exposes the I8042_MMIO device to the caller to allow the register memory
region to be mapped outside of i8042_mm_init().
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-28-mark.cave-ayland@ilande.co.uk>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/input/i8042.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/hw/input/i8042.h b/include/hw/input/i8042.h index 59d695a..d05cd33 100644 --- a/include/hw/input/i8042.h +++ b/include/hw/input/i8042.h @@ -64,9 +64,9 @@ struct MMIOKBDState { #define I8042_A20_LINE "a20" -void i8042_mm_init(qemu_irq kbd_irq, qemu_irq mouse_irq, - MemoryRegion *region, ram_addr_t size, - hwaddr mask); +MMIOKBDState *i8042_mm_init(qemu_irq kbd_irq, qemu_irq mouse_irq, + MemoryRegion *region, ram_addr_t size, + hwaddr mask); void i8042_isa_mouse_fake_event(ISAKBDState *isa); void i8042_setup_a20_line(ISADevice *dev, qemu_irq a20_out); |