From: Mark Cave-Ayland Date: Tue, 12 Jul 2022 21:52:15 +0000 (+0100) Subject: pl050: introduce new PL050_KBD_DEVICE QOM type X-Git-Tag: v7.1.0-rc0~14^2~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1d59315d979061d9ace2a89859474d7b3e99a9b1;p=thirdparty%2Fqemu.git 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 Tested-by: Helge Deller Acked-by: Helge Deller Reviewed-by: Peter Maydell Message-Id: <20220712215251.7944-5-mark.cave-ayland@ilande.co.uk> Reviewed-by: Philippe Mathieu-Daudé --- diff --git a/hw/input/pl050.c b/hw/input/pl050.c index 0d91b0eaea3..7f4ac990812 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 = { diff --git a/include/hw/input/pl050.h b/include/hw/input/pl050.h index c1f6c5a1fbc..9ce8794bd04 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