From patchwork Sun Dec 30 19:56:01 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sinan Kaya X-Patchwork-Id: 10745197 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 25B206C2 for ; Sun, 30 Dec 2018 19:56:17 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 16D2426538 for ; Sun, 30 Dec 2018 19:56:17 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0B20528AD7; Sun, 30 Dec 2018 19:56:17 +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 B2A6926538 for ; Sun, 30 Dec 2018 19:56:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726576AbeL3T4P (ORCPT ); Sun, 30 Dec 2018 14:56:15 -0500 Received: from mail.kernel.org ([198.145.29.99]:47404 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726489AbeL3T4P (ORCPT ); Sun, 30 Dec 2018 14:56:15 -0500 Received: from sinanubuntu1604.mkjiurmyylmellclgttazegk5f.bx.internal.cloudapp.net (unknown [40.76.85.159]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 588382070D; Sun, 30 Dec 2018 19:56:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1546199774; bh=885YvY7HYVgRDpI6o0r3Xw9rvS3ulUyGYALim1lN0XI=; h=From:To:Cc:Subject:Date:From; b=wrtAalNtpARrpgbvkVWFId4Kn5FCGq91VhmVF2eMIDNncHqHh/Y6A/ZHoBEwwaYdF 0tQn/8tQmsLYrHGaoXU0bgbAEo/CW7T/2adz2IOiLAcMULs4lME7UCElfXhQ/Z0X2a O4avyVZFA8EG8DmrJBeEyA/bJjPuW6xfBhLT4muk= From: Sinan Kaya To: linux-next@vger.kernel.org Cc: linux-acpi@vger.kernel.org, Sinan Kaya Subject: [PATCH v4 00/11] Specify CONFIG_PCI dependency explicitly Date: Sun, 30 Dec 2018 19:56:01 +0000 Message-Id: <20181230195612.6657-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 his 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. 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 v3: - collect acked-by for vga-switcheroo - reword the commit message for lpss - add platform/x86 prefix to apple-gmux commit text - add Fixes tag to each committ 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(-)