From patchwork Mon Jan 25 17:23:30 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Antonio Ospite X-Patchwork-Id: 8113571 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id C85F39F6DA for ; Mon, 25 Jan 2016 17:24:12 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 081DA20303 for ; Mon, 25 Jan 2016 17:24:12 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id D7D3C201F5 for ; Mon, 25 Jan 2016 17:24:10 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 7DA302606B2; Mon, 25 Jan 2016 18:24:09 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,NO_DNS_FOR_FROM, RCVD_IN_DNSWL_NONE,UNPARSEABLE_RELAY autolearn=no version=3.3.1 Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id 10D64260575; Mon, 25 Jan 2016 18:24:00 +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 94AB626058E; Mon, 25 Jan 2016 18:23:58 +0100 (CET) Received: from smtp206.alice.it (smtp206.alice.it [82.57.200.102]) by alsa0.perex.cz (Postfix) with ESMTP id 5A822260535 for ; Mon, 25 Jan 2016 18:23:51 +0100 (CET) Received: from jcn (87.13.159.1) by smtp206.alice.it (8.6.060.28) id 56139B831771D31C; Mon, 25 Jan 2016 18:23:49 +0100 Received: from ao2 by jcn with local (Exim 4.86) (envelope-from ) id 1aNkrj-00066N-2A; Mon, 25 Jan 2016 18:23:47 +0100 From: Antonio Ospite To: alsa-devel@alsa-project.org Date: Mon, 25 Jan 2016 18:23:30 +0100 Message-Id: <1453742610-23418-1-git-send-email-ao2@ao2.it> X-Mailer: git-send-email 2.7.0 X-Face: z*RaLf`X<@C75u6Ig9}{oW$H; 1_\2t5)({*|jhM/Vb; ]yA5\I~93>J<_`<4)A{':UrE Cc: Mark Brown , Antonio Ospite , ZhengShunQian Subject: [alsa-devel] [PATCH] ASoC: rk3036: fix missing dependency on REGMAP_MMIO 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: , MIME-Version: 1.0 Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP When SND_SOC_INNO_RK3036 is enabled but REGMAP_MMIO is not, the MODPOST step fails with this error: ... Kernel: arch/x86/boot/bzImage is ready (#3) Building modules, stage 2. MODPOST 3203 modules ERROR: "__devm_regmap_init_mmio_clk" [sound/soc/codecs/snd-soc-inno-rk3036.ko] undefined! Signed-off-by: Antonio Ospite Cc: ZhengShunQian Cc: Mark Brown --- Hi, I enabled SND_SOC_INNO_RK3036 by chance in 4.5-rc1 and the build failed. The patch below allows the kernel to be configured in a buildable way. Ciao ciao, Antonio sound/soc/codecs/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/codecs/Kconfig b/sound/soc/codecs/Kconfig index 50693c8..1f7eaa9 100644 --- a/sound/soc/codecs/Kconfig +++ b/sound/soc/codecs/Kconfig @@ -497,6 +497,7 @@ config SND_SOC_ICS43432 config SND_SOC_INNO_RK3036 tristate "Inno codec driver for RK3036 SoC" + select REGMAP_MMIO config SND_SOC_ISABELLE tristate