From 8a9aadfe7e57427b11d21cef7b8b7c99d52b80ab Mon Sep 17 00:00:00 2001 From: Miroslav Rezanina Date: Wed, 22 Jun 2016 14:03:20 +0200 Subject: [PATCH 06/16] Disable allwiner_ahci device RH-Author: Miroslav Rezanina Message-id: Patchwork-id: 70750 O-Subject: [RHEV-7.3 qemu-kvm-rhev PATCHv3 07/10] Disable allwiner_ahci device Bugzilla: 1333282 RH-Acked-by: Markus Armbruster RH-Acked-by: Laszlo Ersek RH-Acked-by: Thomas Huth From: Miroslav Rezanina There's no default-configs option for allwiner_ahci device and we can't skip file with it so we disable type registration instead. Signed-off-by: Miroslav Rezanina --- hw/ide/ahci.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c index bcb6a07..7b3d07e 100644 --- a/hw/ide/ahci.c +++ b/hw/ide/ahci.c @@ -1812,7 +1812,9 @@ static const TypeInfo allwinner_ahci_info = { static void sysbus_ahci_register_types(void) { type_register_static(&sysbus_ahci_info); +#if 0 /* Disabled in Red Hat Enterprise Linux */ type_register_static(&allwinner_ahci_info); +#endif } type_init(sysbus_ahci_register_types) -- 1.8.3.1