diff options
author | Mark Cave-Ayland | 2022-06-24 15:40:22 +0200 |
---|---|---|
committer | Mark Cave-Ayland | 2022-06-26 19:40:11 +0200 |
commit | 494145b28644dee66c1125c33ba55a02d5585db7 (patch) | |
tree | eff5f89be187ba9a5edb253e6f1f610ce1c38627 /hw/input | |
parent | ps2: improve function prototypes in ps2.c and ps2.h (diff) | |
download | qemu-494145b28644dee66c1125c33ba55a02d5585db7.tar.gz qemu-494145b28644dee66c1125c33ba55a02d5585db7.tar.xz qemu-494145b28644dee66c1125c33ba55a02d5585db7.zip |
ps2: introduce PS2DeviceClass
This is in preparation for allowing the new PS2_KBD_DEVICE and PS2_MOUSE_DEVICE
QOM types to reference the parent PS2_DEVICE device reset() function.
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Acked-by: Helge Deller <deller@gmx.de>
Message-Id: <20220624134109.881989-8-mark.cave-ayland@ilande.co.uk>
Diffstat (limited to 'hw/input')
-rw-r--r-- | hw/input/ps2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/input/ps2.c b/hw/input/ps2.c index 3a770f3b78..fd5236690a 100644 --- a/hw/input/ps2.c +++ b/hw/input/ps2.c @@ -1283,6 +1283,7 @@ static const TypeInfo ps2_info = { .parent = TYPE_SYS_BUS_DEVICE, .instance_size = sizeof(PS2State), .class_init = ps2_class_init, + .class_size = sizeof(PS2DeviceClass), .abstract = true }; |