From patchwork Sun Dec 30 19:56:09 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sinan Kaya X-Patchwork-Id: 10745937 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 C78C418A6 for ; Tue, 1 Jan 2019 09:38:11 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BBA222843C for ; Tue, 1 Jan 2019 09:38:11 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id AF6B72877B; Tue, 1 Jan 2019 09:38: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=-2.7 required=2.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id AD1412877E for ; Tue, 1 Jan 2019 09:38:09 +0000 (UTC) Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id 86030267BB0; Tue, 1 Jan 2019 09:42:31 +0100 (CET) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id 0578D267A8B; Sun, 30 Dec 2018 20:56:29 +0100 (CET) Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by alsa0.perex.cz (Postfix) with ESMTP id 1C8162679E0 for ; Sun, 30 Dec 2018 20:56:27 +0100 (CET) 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 785542070D; Sun, 30 Dec 2018 19:56:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1546199786; bh=dzcN3CzEqvCBksnTNXBSAvqqybh+aFV70hyMO36vInU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=b6udSS5HOrrDYzBmJfrhfBZ9OwJK4a295kSFQRlorWzGyj5p2MY79yeGzlkRb9oOx t3ankglJtjYZAzXUgNNY8Fbm+nuw9Ve4eMjjjPnpu3CdzreEeNeDTEejQuxcd37LLZ Pq1Yz0XuYcsCjbumaBadTCKnTTXofkRLO73Hl5tY= From: Sinan Kaya To: linux-next@vger.kernel.org Date: Sun, 30 Dec 2018 19:56:09 +0000 Message-Id: <20181230195612.6657-9-okaya@kernel.org> X-Mailer: git-send-email 2.19.0 In-Reply-To: <20181230195612.6657-1-okaya@kernel.org> References: <20181230195612.6657-1-okaya@kernel.org> MIME-Version: 1.0 X-Mailman-Approved-At: Tue, 01 Jan 2019 09:42:25 +0100 Cc: "moderated list:INTEL ASoC DRIVERS" , Sinan Kaya , Takashi Iwai , Jie Yang , Pierre-Louis Bossart , Liam Girdwood , linux-acpi@vger.kernel.org, Mark Brown , open list Subject: [alsa-devel] [PATCH v4 08/11] ASoC: Intel: atom: Make PCI dependency explicit X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP Code does unconditional select for IOSF_MBI. IOSF_MBI driver depends on CONFIG_PCI set but this is not specified anywhere. Fixes: 5d32a66541c46 ("PCI/ACPI: Allow ACPI to be built without CONFIG_PCI set") Signed-off-by: Sinan Kaya --- sound/soc/intel/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/intel/Kconfig b/sound/soc/intel/Kconfig index 2fd1b61e8331..b0764b2fe001 100644 --- a/sound/soc/intel/Kconfig +++ b/sound/soc/intel/Kconfig @@ -91,7 +91,7 @@ config SND_SST_ATOM_HIFI2_PLATFORM_PCI config SND_SST_ATOM_HIFI2_PLATFORM_ACPI tristate "ACPI HiFi2 (Baytrail, Cherrytrail) Platforms" default ACPI - depends on X86 && ACPI + depends on X86 && ACPI && PCI select SND_SST_IPC_ACPI select SND_SST_ATOM_HIFI2_PLATFORM select SND_SOC_ACPI_INTEL_MATCH