From patchwork Wed Jan 2 18:10:27 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sinan Kaya X-Patchwork-Id: 10746597 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 11BA7746 for ; Wed, 2 Jan 2019 18:10:43 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 02153283AD for ; Wed, 2 Jan 2019 18:10:43 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id E7B27283CB; Wed, 2 Jan 2019 18:10:42 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8DCBD283AD for ; Wed, 2 Jan 2019 18:10:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727134AbfABSKm (ORCPT ); Wed, 2 Jan 2019 13:10:42 -0500 Received: from mail.kernel.org ([198.145.29.99]:48908 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726756AbfABSKl (ORCPT ); Wed, 2 Jan 2019 13:10:41 -0500 Received: from sinanubuntu1604.mkjiurmyylmellclgttazegk5f.bx.internal.cloudapp.net (unknown [137.117.71.164]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 06B90218D3; Wed, 2 Jan 2019 18:10:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1546452641; bh=vYxK5lPUveXUYsRAMHUB9xlrXjClPBj/ERFcbpVTu3s=; h=From:To:Cc:Subject:Date:From; b=uyz/h9yG2oqidWmSof4oeK7meR4eFr3ZDNV8Cl063I+NNCUK4DGn88utffjxVNMXH rNkTvf6z7TYY0mjlJHCHWO4u+gBF6/2LJd76HNs6s2uTU+rzfrA+YJ49rFdvySmsQV rucj/3HFpXchHgenQ1UKyQjYuLF/SbZvxWV06Bo4= From: Sinan Kaya To: linux-next@vger.kernel.org Cc: linux-acpi@vger.kernel.org, Sinan Kaya Subject: [PATCH v5 00/11] Specify CONFIG_PCI dependency explicitly Date: Wed, 2 Jan 2019 18:10:27 +0000 Message-Id: <20190102181038.4418-1-okaya@kernel.org> X-Mailer: git-send-email 2.19.0 MIME-Version: 1.0 Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This patchset fixes fallout of commit 5d32a66541c4 ("PCI/ACPI: Allow ACPI to be built without CONFIG_PCI set") which is part of Rafael's acpi pull for v4.21. After 'commit 5d32a66541c4 ("PCI/ACPI: Allow ACPI to be built without CONFIG_PCI set")' dependencies on CONFIG_PCI that previously were satisfied implicitly through dependencies on CONFIG_ACPI have to be specified directly. Several drivers depend on PCI but do not call that out in their Kconfig. This causes linker and compilation errors when CONFIG_ACPI is set but CONFIG_PCI is unset. Diff from v4: - Reword the commit text to include the reason why this change is being made with commit reference. - Add CONFIG_PCI dependency into SDHCI_ACPI driver. Sinan Kaya (11): ACPI / LPSS: Make PCI dependency explicit ata: pata_acpi: Make PCI dependency explicit vga-switcheroo: make PCI dependency explicit platform/x86: intel_ips: make PCI dependency explicit platform/x86: intel_pmc: Make PCI dependency explicit platform/x86: apple-gmux: Make PCI dependency explicit drivers: thermal: int3406_thermal: Make PCI dependency explicit ASoC: Intel: atom: Make PCI dependency explicit mmc: sdhci-acpi: Make PCI dependency explicit x86/intel/lpss: Make PCI dependency explicit drivers: thermal: int340x_thermal: Make PCI dependency explicit arch/x86/Kconfig | 2 +- drivers/acpi/Makefile | 3 ++- drivers/acpi/internal.h | 4 ++++ drivers/ata/Kconfig | 2 +- drivers/gpu/vga/Kconfig | 1 + drivers/mmc/host/Kconfig | 2 +- drivers/platform/x86/Kconfig | 5 +++-- drivers/thermal/intel/int340x_thermal/Kconfig | 4 ++-- sound/soc/intel/Kconfig | 2 +- 9 files changed, 16 insertions(+), 9 deletions(-)