summaryrefslogtreecommitdiffstats
path: root/include/hw/input
diff options
context:
space:
mode:
authorMark Cave-Ayland2022-07-12 23:52:15 +0200
committerMark Cave-Ayland2022-07-18 20:28:45 +0200
commit1d59315d979061d9ace2a89859474d7b3e99a9b1 (patch)
treefcc192002b4c7145a08b8f2219a0821b233e0ec2 /include/hw/input
parentpl050: change PL050State dev pointer from void to PS2State (diff)
downloadqemu-1d59315d979061d9ace2a89859474d7b3e99a9b1.tar.gz
qemu-1d59315d979061d9ace2a89859474d7b3e99a9b1.tar.xz
qemu-1d59315d979061d9ace2a89859474d7b3e99a9b1.zip
pl050: introduce new PL050_KBD_DEVICE QOM type
This will be soon be used to hold the underlying PS2_KBD_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-5-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.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/hw/input/pl050.h b/include/hw/input/pl050.h
index c1f6c5a1fb..9ce8794bd0 100644
--- a/include/hw/input/pl050.h
+++ b/include/hw/input/pl050.h
@@ -32,4 +32,11 @@ struct PL050State {
bool is_mouse;
};
+#define TYPE_PL050_KBD_DEVICE "pl050_keyboard"
+OBJECT_DECLARE_SIMPLE_TYPE(PL050KbdState, PL050_KBD_DEVICE)
+
+struct PL050KbdState {
+ PL050State parent_obj;
+};
+
#endif