The sysbus-ahci devices are supposed to be created and wired by code from other devices, like calxeda_init() and xlnx_zynqmp_realize(), and won't work with -device. Remove the user_creatable flag from the device class.
Cc: John Snow <js...@redhat.com> Cc: qemu-block@nongnu.org Cc: Rob Herring <r...@kernel.org> Cc: Peter Maydell <peter.mayd...@linaro.org> Cc: Alistair Francis <alistair.fran...@xilinx.com> Cc: "Edgar E. Iglesias" <edgar.igles...@gmail.com> Reviewed-by: Alistair Francis <alistair.fran...@xilinx.com> Signed-off-by: Eduardo Habkost <ehabk...@redhat.com> --- Changes v1 -> v2: * (none) --- hw/ide/ahci.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c index 7f10cda354..2ea1a282ef 100644 --- a/hw/ide/ahci.c +++ b/hw/ide/ahci.c @@ -1721,11 +1721,6 @@ static void sysbus_ahci_class_init(ObjectClass *klass, void *data) dc->props = sysbus_ahci_properties; dc->reset = sysbus_ahci_reset; 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_ahci_info = { -- 2.11.0.259.g40922b1