aboutsummaryrefslogtreecommitdiff
path: root/include/hw/input
diff options
context:
space:
mode:
authorMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>2022-07-12 22:52:22 +0100
committerMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>2022-07-18 19:28:46 +0100
commit6f9f245b932de0c05f618fb1ff2c251dce23cd29 (patch)
tree4e2437dc995945250e2cf403cab81064aa16b965 /include/hw/input
parent6a05d0b3d1474ad5fd7ba1cc7040dffbc3c15a11 (diff)
downloadqemu-6f9f245b932de0c05f618fb1ff2c251dce23cd29.zip
qemu-6f9f245b932de0c05f618fb1ff2c251dce23cd29.tar.gz
qemu-6f9f245b932de0c05f618fb1ff2c251dce23cd29.tar.bz2
pl050: don't use legacy ps2_mouse_init() function
Instantiate the PS2 mouse device within PL050MouseState using object_initialize_child() in pl050_mouse_init() and realize it in pl050_mouse_realize() accordingly. 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-12-mark.cave-ayland@ilande.co.uk> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'include/hw/input')
-rw-r--r--include/hw/input/pl050.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/input/pl050.h b/include/hw/input/pl050.h
index 28f6216..89ec4fa 100644
--- a/include/hw/input/pl050.h
+++ b/include/hw/input/pl050.h
@@ -52,6 +52,8 @@ OBJECT_DECLARE_SIMPLE_TYPE(PL050MouseState, PL050_MOUSE_DEVICE)
struct PL050MouseState {
PL050State parent_obj;
+
+ PS2MouseState mouse;
};
#endif