aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>2022-07-12 22:52:16 +0100
committerMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>2022-07-18 19:28:45 +0100
commit0a3c1e1bf883afa5cd9df102742f087030b49c80 (patch)
tree73c6093e1ff657c2471dbb38b0da0e5a61d60261 /hw
parent1d59315d979061d9ace2a89859474d7b3e99a9b1 (diff)
downloadqemu-0a3c1e1bf883afa5cd9df102742f087030b49c80.zip
qemu-0a3c1e1bf883afa5cd9df102742f087030b49c80.tar.gz
qemu-0a3c1e1bf883afa5cd9df102742f087030b49c80.tar.bz2
pl050: introduce new PL050_MOUSE_DEVICE QOM type
This will be soon be used to hold the underlying PS2_MOUSE_DEVICE object. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Tested-by: Helge Deller <deller@gmx.de> Acked-by: Helge Deller <deller@gmx.de> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20220712215251.7944-6-mark.cave-ayland@ilande.co.uk> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'hw')
-rw-r--r--hw/input/pl050.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/input/pl050.c b/hw/input/pl050.c
index 7f4ac99..8845999 100644
--- a/hw/input/pl050.c
+++ b/hw/input/pl050.c
@@ -189,9 +189,10 @@ static const TypeInfo pl050_kbd_info = {
};
static const TypeInfo pl050_mouse_info = {
- .name = "pl050_mouse",
+ .name = TYPE_PL050_MOUSE_DEVICE,
.parent = TYPE_PL050,
.instance_init = pl050_mouse_init,
+ .instance_size = sizeof(PL050MouseState),
};
static void pl050_init(Object *obj)