From patchwork Fri Sep 22 07:42:25 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kiszka X-Patchwork-Id: 817360 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=nongnu.org (client-ip=2001:4830:134:3::11; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3xz5732NB0z9ryr for ; Fri, 22 Sep 2017 17:42:54 +1000 (AEST) Received: from localhost ([::1]:57117 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dvIbr-0006LX-LK for incoming@patchwork.ozlabs.org; Fri, 22 Sep 2017 03:42:51 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36404) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dvIbW-0006LE-Sb for qemu-devel@nongnu.org; Fri, 22 Sep 2017 03:42:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dvIbT-0007hx-QO for qemu-devel@nongnu.org; Fri, 22 Sep 2017 03:42:30 -0400 Received: from goliath.siemens.de ([192.35.17.28]:42469) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dvIbT-0007hf-H0 for qemu-devel@nongnu.org; Fri, 22 Sep 2017 03:42:27 -0400 Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by goliath.siemens.de (8.15.2/8.15.2) with ESMTPS id v8M7gPkQ004983 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Fri, 22 Sep 2017 09:42:25 +0200 Received: from md1f2u6c.ww002.siemens.net ([139.22.130.22]) by mail1.siemens.de (8.15.2/8.15.2) with ESMTP id v8M7gPkE031857; Fri, 22 Sep 2017 09:42:25 +0200 To: qemu-devel , Gerd Hoffmann From: Jan Kiszka Message-ID: Date: Fri, 22 Sep 2017 09:42:25 +0200 User-Agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); de; rv:1.8.1.12) Gecko/20080226 SUSE/2.0.0.12-1.1 Thunderbird/2.0.0.12 Mnenhy/0.7.5.666 MIME-Version: 1.0 Content-Language: en-US X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 192.35.17.28 Subject: [Qemu-devel] [PATCH] usb: Fix usb-host build X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" From: Jan Kiszka This reverts the incorrect commit 2041649f0b04 (these are machine-independent objects) and fixes the name of the config var. Signed-off-by: Jan Kiszka --- hw/usb/Makefile.objs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/usb/Makefile.objs b/hw/usb/Makefile.objs index 757e365562..c7f0a52f44 100644 --- a/hw/usb/Makefile.objs +++ b/hw/usb/Makefile.objs @@ -38,7 +38,7 @@ endif common-obj-$(CONFIG_USB_REDIR) += redirect.o quirks.o # usb pass-through -ifeq ($(CONFIG_LIBUSB)$(CONFIG_USB),yy) +ifeq ($(CONFIG_USB_LIBUSB),y) common-obj-y += host-libusb.o host-legacy.o else common-obj-y += host-stub.o