mirror of https://github.com/xemu-project/xemu.git
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>
This commit is contained in:
parent
1d59315d97
commit
0a3c1e1bf8
|
@ -189,9 +189,10 @@ static const TypeInfo pl050_kbd_info = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const TypeInfo pl050_mouse_info = {
|
static const TypeInfo pl050_mouse_info = {
|
||||||
.name = "pl050_mouse",
|
.name = TYPE_PL050_MOUSE_DEVICE,
|
||||||
.parent = TYPE_PL050,
|
.parent = TYPE_PL050,
|
||||||
.instance_init = pl050_mouse_init,
|
.instance_init = pl050_mouse_init,
|
||||||
|
.instance_size = sizeof(PL050MouseState),
|
||||||
};
|
};
|
||||||
|
|
||||||
static void pl050_init(Object *obj)
|
static void pl050_init(Object *obj)
|
||||||
|
|
|
@ -39,4 +39,11 @@ struct PL050KbdState {
|
||||||
PL050State parent_obj;
|
PL050State parent_obj;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#define TYPE_PL050_MOUSE_DEVICE "pl050_mouse"
|
||||||
|
OBJECT_DECLARE_SIMPLE_TYPE(PL050MouseState, PL050_MOUSE_DEVICE)
|
||||||
|
|
||||||
|
struct PL050MouseState {
|
||||||
|
PL050State parent_obj;
|
||||||
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue