Blame SOURCES/0005-RHEL-Fix-list-of-supported-sound-cards-to-match-RHEL.patch

c232e6
From 49385571ce5967f8d9a102e935f201ee9c22326d Mon Sep 17 00:00:00 2001
c232e6
From: "Richard W.M. Jones" <rjones@redhat.com>
c232e6
Date: Fri, 24 Apr 2015 09:45:41 -0400
c232e6
Subject: [PATCH 05/12] RHEL: Fix list of supported sound cards to match RHEL
c232e6
 qemu (RHBZ#1176493).
c232e6
c232e6
---
c232e6
 v2v/utils.ml | 5 +++--
c232e6
 1 file changed, 3 insertions(+), 2 deletions(-)
c232e6
c232e6
diff --git a/v2v/utils.ml b/v2v/utils.ml
c232e6
index 7136e4be..a6c359f0 100644
c232e6
--- a/v2v/utils.ml
c232e6
+++ b/v2v/utils.ml
c232e6
@@ -59,13 +59,14 @@ let kvm_arch = function
c232e6
 (* Does qemu support the given sound card? *)
c232e6
 let qemu_supports_sound_card = function
c232e6
   | Types.AC97
c232e6
-  | Types.ES1370
c232e6
   | Types.ICH6
c232e6
   | Types.ICH9
c232e6
   | Types.PCSpeaker
c232e6
+    -> true
c232e6
+  | Types.ES1370
c232e6
   | Types.SB16
c232e6
   | Types.USBAudio
c232e6
-    -> true
c232e6
+    -> false
c232e6
 
c232e6
 (* Find the UEFI firmware. *)
c232e6
 let find_uefi_firmware guest_arch =
c232e6
-- 
c232e6
2.31.1
c232e6