diff options
| author | Bernhard Beschow <shentey@gmail.com> | 2023-09-08 10:42:31 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2023-10-04 18:15:05 -0400 |
| commit | c9c8ba69d5dbe5c1c6370e1f09ebd7531509d075 (patch) | |
| tree | 26ab9bf74553d4bfb4cd4f6cd62bc700f8aba1ee /hw/i386/generic_event_device_x86.c | |
| parent | 4f70dd5f6366ac04b0f67d026ee2e17eb35daa45 (diff) | |
| download | focaccia-qemu-c9c8ba69d5dbe5c1c6370e1f09ebd7531509d075.tar.gz focaccia-qemu-c9c8ba69d5dbe5c1c6370e1f09ebd7531509d075.zip | |
hw/i386: Remove now redundant TYPE_ACPI_GED_X86
Now that TYPE_ACPI_GED_X86 doesn't assign AcpiDeviceIfClass::madt_cpu any more it is the same as TYPE_ACPI_GED. Signed-off-by: Bernhard Beschow <shentey@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20230908084234.17642-6-shentey@gmail.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/i386/generic_event_device_x86.c')
| -rw-r--r-- | hw/i386/generic_event_device_x86.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/hw/i386/generic_event_device_x86.c b/hw/i386/generic_event_device_x86.c deleted file mode 100644 index 8fc233e1f1..0000000000 --- a/hw/i386/generic_event_device_x86.c +++ /dev/null @@ -1,27 +0,0 @@ -/* - * x86 variant of the generic event device for hw reduced acpi - * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU General Public License, - * version 2 or later, as published by the Free Software Foundation. - */ - -#include "qemu/osdep.h" -#include "hw/acpi/generic_event_device.h" - -static const TypeInfo acpi_ged_x86_info = { - .name = TYPE_ACPI_GED_X86, - .parent = TYPE_ACPI_GED, - .interfaces = (InterfaceInfo[]) { - { TYPE_HOTPLUG_HANDLER }, - { TYPE_ACPI_DEVICE_IF }, - { } - } -}; - -static void acpi_ged_x86_register_types(void) -{ - type_register_static(&acpi_ged_x86_info); -} - -type_init(acpi_ged_x86_register_types) |