TYPE_XENSYSDEV is only used internally by xen_be_init(), and is not supposed to be plugged/unplugged dynamically. Remove the user_creatable flag from the device class.
Cc: Juergen Gross <[email protected]>, Cc: Peter Maydell <[email protected]>, Cc: Thomas Huth <[email protected]> Cc: [email protected] Cc: Markus Armbruster <[email protected]>, Cc: Marcel Apfelbaum <[email protected]>, Cc: Laszlo Ersek <[email protected]> Signed-off-by: Eduardo Habkost <[email protected]> --- Changes series v1 -> v2: * (New patch added to series) --- hw/xen/xen_backend.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/hw/xen/xen_backend.c b/hw/xen/xen_backend.c index 56df27992f..e48c5f48fc 100644 --- a/hw/xen/xen_backend.c +++ b/hw/xen/xen_backend.c @@ -663,11 +663,6 @@ static void xen_sysdev_class_init(ObjectClass *klass, void *data) k->init = xen_sysdev_init; dc->props = xen_sysdev_properties; dc->bus_type = TYPE_XENSYSBUS; - /* - * FIXME: Set only because we are not sure yet if this device - * will be outside the q35 sysbus whitelist. - */ - dc->user_creatable = true; } static const TypeInfo xensysdev_info = { -- 2.11.0.259.g40922b1
