aboutsummaryrefslogtreecommitdiff
path: root/include/hw/input/pl050.h
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 /include/hw/input/pl050.h
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 'include/hw/input/pl050.h')
-rw-r--r--include/hw/input/pl050.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/hw/input/pl050.h b/include/hw/input/pl050.h
index 9ce8794..bb0e87f 100644
--- a/include/hw/input/pl050.h
+++ b/include/hw/input/pl050.h
@@ -39,4 +39,11 @@ struct PL050KbdState {
PL050State parent_obj;
};
+#define TYPE_PL050_MOUSE_DEVICE "pl050_mouse"
+OBJECT_DECLARE_SIMPLE_TYPE(PL050MouseState, PL050_MOUSE_DEVICE)
+
+struct PL050MouseState {
+ PL050State parent_obj;
+};
+
#endif