|
|
9bac43 |
From 6c6a4d0d8f5d83ee57b83a85889426389141498c Mon Sep 17 00:00:00 2001
|
|
|
9bac43 |
From: Thomas Huth <thuth@redhat.com>
|
|
|
9bac43 |
Date: Mon, 9 Oct 2017 12:32:39 +0200
|
|
|
9bac43 |
Subject: [PATCH 20/34] usb: fix libusb config variable name.
|
|
|
9bac43 |
|
|
|
9bac43 |
RH-Author: Thomas Huth <thuth@redhat.com>
|
|
|
9bac43 |
Message-id: <1507552368-9245-4-git-send-email-thuth@redhat.com>
|
|
|
9bac43 |
Patchwork-id: 77023
|
|
|
9bac43 |
O-Subject: [RHEL-7.5 qemu-kvm-ma PATCH 03/12] usb: fix libusb config variable name.
|
|
|
9bac43 |
Bugzilla: 1492033
|
|
|
9bac43 |
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
9bac43 |
RH-Acked-by: David Gibson <dgibson@redhat.com>
|
|
|
9bac43 |
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
9bac43 |
|
|
|
9bac43 |
From: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
9bac43 |
|
|
|
9bac43 |
Cc: Jan Kiszka <jan.kiszka@siemens.com>
|
|
|
9bac43 |
Fixes: 4e5ee5b21c84fe3023a64b5cc2e12a52ab0597c1
|
|
|
9bac43 |
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
9bac43 |
Tested-by: Jan Kiszka <jan.kiszka@siemens.com>
|
|
|
9bac43 |
Message-id: 20170926063820.30773-1-kraxel@redhat.com
|
|
|
9bac43 |
(cherry picked from commit 275d477a1adb084a47859507b20b05e7d65f8e8d)
|
|
|
9bac43 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
9bac43 |
---
|
|
|
9bac43 |
hw/usb/Makefile.objs | 2 +-
|
|
|
9bac43 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
9bac43 |
|
|
|
9bac43 |
diff --git a/hw/usb/Makefile.objs b/hw/usb/Makefile.objs
|
|
|
9bac43 |
index 757e365..01c18cf 100644
|
|
|
9bac43 |
--- a/hw/usb/Makefile.objs
|
|
|
9bac43 |
+++ b/hw/usb/Makefile.objs
|
|
|
9bac43 |
@@ -38,7 +38,7 @@ endif
|
|
|
9bac43 |
common-obj-$(CONFIG_USB_REDIR) += redirect.o quirks.o
|
|
|
9bac43 |
|
|
|
9bac43 |
# usb pass-through
|
|
|
9bac43 |
-ifeq ($(CONFIG_LIBUSB)$(CONFIG_USB),yy)
|
|
|
9bac43 |
+ifeq ($(CONFIG_USB_LIBUSB)$(CONFIG_USB),yy)
|
|
|
9bac43 |
common-obj-y += host-libusb.o host-legacy.o
|
|
|
9bac43 |
else
|
|
|
9bac43 |
common-obj-y += host-stub.o
|
|
|
9bac43 |
--
|
|
|
9bac43 |
1.8.3.1
|
|
|
9bac43 |
|