Skip to content
Snippets Groups Projects
Commit 62201e43 authored by Mark Cave-Ayland's avatar Mark Cave-Ayland
Browse files

lasips2: introduce LASIPS2PortDeviceClass for the LASIPS2_PORT device


This will soon be used to store the reference to the LASIPS2_PORT parent device
for LASIPS2_KBD_PORT and LASIPS2_MOUSE_PORT.

Signed-off-by: default avatarMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Tested-by: default avatarHelge Deller <deller@gmx.de>
Acked-by: default avatarHelge Deller <deller@gmx.de>
Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
Message-Id: <20220712215251.7944-26-mark.cave-ayland@ilande.co.uk>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <f4bug@amsat.org>
parent 8db817be
No related branches found
No related tags found
No related merge requests found
......@@ -334,6 +334,8 @@ static const TypeInfo lasips2_port_info = {
.parent = TYPE_DEVICE,
.instance_init = lasips2_port_init,
.instance_size = sizeof(LASIPS2Port),
.class_init = lasips2_port_class_init,
.class_size = sizeof(LASIPS2PortDeviceClass),
.abstract = true,
};
......
......@@ -26,7 +26,11 @@
#include "hw/input/ps2.h"
#define TYPE_LASIPS2_PORT "lasips2-port"
OBJECT_DECLARE_SIMPLE_TYPE(LASIPS2Port, LASIPS2_PORT)
OBJECT_DECLARE_TYPE(LASIPS2Port, LASIPS2PortDeviceClass, LASIPS2_PORT)
struct LASIPS2PortDeviceClass {
DeviceClass parent;
};
typedef struct LASIPS2State LASIPS2State;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment