mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-08 16:07:39 -06:00
sysbus: apic: ioapic: convert to QEMU Object Model
This converts three devices because apic and ioapic are subclasses of sysbus. Converting subclasses independently of their base class is prohibitively hard. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
40021f0888
commit
999e12bbe8
131 changed files with 2734 additions and 1297 deletions
|
@ -271,12 +271,19 @@ static const VMStateDescription vmstate_lm32_uart = {
|
|||
}
|
||||
};
|
||||
|
||||
static SysBusDeviceInfo lm32_uart_info = {
|
||||
.init = lm32_uart_init,
|
||||
.qdev.name = "lm32-uart",
|
||||
.qdev.size = sizeof(LM32UartState),
|
||||
.qdev.vmsd = &vmstate_lm32_uart,
|
||||
.qdev.reset = uart_reset,
|
||||
static void lm32_uart_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
|
||||
|
||||
k->init = lm32_uart_init;
|
||||
}
|
||||
|
||||
static DeviceInfo lm32_uart_info = {
|
||||
.name = "lm32-uart",
|
||||
.size = sizeof(LM32UartState),
|
||||
.vmsd = &vmstate_lm32_uart,
|
||||
.reset = uart_reset,
|
||||
.class_init = lm32_uart_class_init,
|
||||
};
|
||||
|
||||
static void lm32_uart_register(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue