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

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