From patchwork Sat Jan 5 10:05:55 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sinan Kaya X-Patchwork-Id: 10749203 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 C6ADE746 for ; Sat, 5 Jan 2019 10:06:11 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B2D20287A4 for ; Sat, 5 Jan 2019 10:06:11 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id A4263287B7; Sat, 5 Jan 2019 10:06:11 +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 51B312875E for ; Sat, 5 Jan 2019 10:06:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726242AbfAEKGK (ORCPT ); Sat, 5 Jan 2019 05:06:10 -0500 Received: from mail.kernel.org ([198.145.29.99]:40696 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726141AbfAEKGK (ORCPT ); Sat, 5 Jan 2019 05:06:10 -0500 Received: from sinanubuntu1604.mkjiurmyylmellclgttazegk5f.bx.internal.cloudapp.net (unknown [104.211.55.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 272552070C; Sat, 5 Jan 2019 10:06:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1546682769; bh=GlZUXvGO6SCSemH0k35I6oPGZklGKH70frCT2tfdoWE=; h=From:To:Cc:Subject:Date:From; b=FheoVkYv3wlWymF/KEpt5SR4hiqn7Ic7GsfYahoMpH0+3xU/MiXXiwmLKLDBHzAmg LxkiHKpWjPJTzo0hb2d3tTDNY7Ce7KWHQTTe6hvkPdDzV3JBFC2cC4drQEvIwKS8qs ymiUHd1wjxKoFYKxyK49b272kvMDhiWDtNuleOPQ= From: Sinan Kaya To: linux-next@vger.kernel.org Cc: linux-acpi@vger.kernel.org, Sinan Kaya Subject: [PATCH v6 00/11] Specify CONFIG_PCI dependency explicitly Date: Sat, 5 Jan 2019 10:05:55 +0000 Message-Id: <20190105100606.6673-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 v5: Refactor platform/x86: intel_ips and platform/x86: apple-gmux per feedback from Andy. Collect acked-by and reviewed-by from Andy. 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 | 6 +++--- drivers/thermal/intel/int340x_thermal/Kconfig | 4 ++-- sound/soc/intel/Kconfig | 2 +- 9 files changed, 16 insertions(+), 10 deletions(-)