Blame SOURCES/0015-RHEL-7-Fix-list-of-supported-sound-cards-to-match-RH.patch

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