From nobody Sat May 18 03:46:16 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=linux.intel.com ARC-Seal: i=1; a=rsa-sha256; t=1558055649; cv=none; d=zoho.com; s=zohoarc; b=EqIjiCIwnrcqWMMKx4pkNm/YxJ8CIz2KYrU8GuogdWjCwsdyY8uZwNEJ1zfV3BlbaaUGfnb5Xmq615PQOKbNyatbmebL2BLHWUckve+ib/KuS8aijaIej33VH+G2B7iv4IR+IAoCsakRswHczBe45OrOHKSh8a5qI5fg0slJUgc= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1558055649; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=/bRteH0O0dduq7WkB+k9F+5lbNbg1GWlatUCiTffyTY=; b=f6l8f5CwjPy3Yua/2DADAuCVnJMgBw7vG75++yrKje5qaJrAfFCvDxE/qhalnXZIVqlnib9uEXOG5U1qzjm98wytE2P8qhjfFyudau2Q6omdIfTSF0gyKj/8WVJR+PiRTWtIz5V37fXEs3ucsdH31QiSySkch1a5cbIPyLUnwBA= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.gnu.org (209.51.188.17 [209.51.188.17]) by mx.zohomail.com with SMTPS id 1558055649892693.5329753212849; Thu, 16 May 2019 18:14:09 -0700 (PDT) Received: from localhost ([127.0.0.1]:39072 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hRR7E-0005bG-L3 for importer@patchew.org; Thu, 16 May 2019 20:52:52 -0400 Received: from eggs.gnu.org ([209.51.188.92]:54512) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hRR6K-0005Ib-3O for qemu-devel@nongnu.org; Thu, 16 May 2019 20:51:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hRR6J-0004Gt-7j for qemu-devel@nongnu.org; Thu, 16 May 2019 20:51:56 -0400 Received: from mga09.intel.com ([134.134.136.24]:56981) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hRR6H-0004G2-F5 for qemu-devel@nongnu.org; Thu, 16 May 2019 20:51:55 -0400 Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 16 May 2019 17:51:50 -0700 Received: from richard.sh.intel.com (HELO localhost) ([10.239.159.54]) by orsmga005.jf.intel.com with ESMTP; 16 May 2019 17:51:48 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-ExtLoop1: 1 From: Wei Yang To: qemu-devel@nongnu.org Date: Fri, 17 May 2019 08:51:14 +0800 Message-Id: <20190517005114.19456-1-richardw.yang@linux.intel.com> X-Mailer: git-send-email 2.19.1 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 134.134.136.24 Subject: [Qemu-devel] [PATCH] hw/acpi: ACPI_PCI should depends on both ACPI and PCI 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: , Cc: imammedo@redhat.com, Wei Yang , mst@redhat.com Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Pointed out by Philippe Mathieu-Daud=C3=A9 . Signed-off-by: Wei Yang Reviewed-by: Richard Henderson --- hw/acpi/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/acpi/Kconfig b/hw/acpi/Kconfig index 7265843cc3..7c59cf900b 100644 --- a/hw/acpi/Kconfig +++ b/hw/acpi/Kconfig @@ -25,7 +25,7 @@ config ACPI_NVDIMM =20 config ACPI_PCI bool - depends on ACPI + depends on ACPI && PCI =20 config ACPI_VMGENID bool --=20 2.19.1