From: Eduardo Habkost Date: Wed, 3 May 2017 20:35:58 +0000 (-0300) Subject: esp: Remove user_creatable flag X-Git-Tag: v2.10.0-rc0~184^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4afad3878f7b2bfd5182bbde60a6b75a448b6d2;p=thirdparty%2Fqemu.git esp: Remove user_creatable flag esp devices aren't going to work with -device, as they need IRQs to be connected and mmio to be mapped (this is done by esp_init()). Remove the user_creatable flag from the device class. Cc: Marcel Apfelbaum Cc: Paolo Bonzini Acked-by: Marcel Apfelbaum Signed-off-by: Eduardo Habkost Message-Id: <20170503203604.31462-16-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost --- diff --git a/hw/scsi/esp.c b/hw/scsi/esp.c index 7bdc1e1b99f..eee831efebc 100644 --- a/hw/scsi/esp.c +++ b/hw/scsi/esp.c @@ -728,11 +728,6 @@ static void sysbus_esp_class_init(ObjectClass *klass, void *data) dc->reset = sysbus_esp_hard_reset; dc->vmsd = &vmstate_sysbus_esp_scsi; set_bit(DEVICE_CATEGORY_STORAGE, dc->categories); - /* - * 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 sysbus_esp_info = {