diff options
author | Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> | 2022-07-12 22:52:15 +0100 |
---|---|---|
committer | Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> | 2022-07-18 19:28:45 +0100 |
commit | 1d59315d979061d9ace2a89859474d7b3e99a9b1 (patch) | |
tree | fcc192002b4c7145a08b8f2219a0821b233e0ec2 /hw/input | |
parent | 33e0958e7eb9481baf59df826e024954c6e6b5ca (diff) |
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 'hw/input')
-rw-r--r-- | hw/input/pl050.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/input/pl050.c b/hw/input/pl050.c index 0d91b0eaea..7f4ac99081 100644 --- a/hw/input/pl050.c +++ b/hw/input/pl050.c @@ -182,9 +182,10 @@ static void pl050_mouse_init(Object *obj) } static const TypeInfo pl050_kbd_info = { - .name = "pl050_keyboard", + .name = TYPE_PL050_KBD_DEVICE, .parent = TYPE_PL050, .instance_init = pl050_kbd_init, + .instance_size = sizeof(PL050KbdState), }; static const TypeInfo pl050_mouse_info = { |