From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751694AbaHSIqR (ORCPT ); Tue, 19 Aug 2014 04:46:17 -0400 Received: from smtp-out-134.synserver.de ([212.40.185.134]:1153 "EHLO smtp-out-134.synserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751014AbaHSIqP (ORCPT ); Tue, 19 Aug 2014 04:46:15 -0400 X-SynServer-TrustedSrc: 1 X-SynServer-AuthUser: lars@metafoo.de X-SynServer-PPID: 31564 Message-ID: <53F30E90.8080902@metafoo.de> Date: Tue, 19 Aug 2014 10:45:04 +0200 From: Lars-Peter Clausen User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Icedove/24.7.0 MIME-Version: 1.0 To: Shengjiu Wang CC: fabio.estevam@freescale.com, sfr@canb.auug.org.au, alsa-devel@alsa-project.org, timur@tabi.org, arnd@arndb.de, shc_work@mail.ru, tiwai@suse.de, Li.Xiubo@freescale.com, lgirdwood@gmail.com, nicoleotsuka@gmail.com, broonie@kernel.org, xobs@kosagi.com, linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org Subject: Re: [alsa-devel] [PATCH V1 1/3] ASoC: fsl: Kconfig: remove dependence of SND_IMX_SOC for SND_SOC_IMX_PCM_DMA References: <53F22F5E.2090601@metafoo.de> <20140819074103.GA5806@audiosh1> <53F30C91.7080700@metafoo.de> In-Reply-To: <53F30C91.7080700@metafoo.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 08/19/2014 10:36 AM, Lars-Peter Clausen wrote: > On 08/19/2014 09:41 AM, Shengjiu Wang wrote: >> On Mon, Aug 18, 2014 at 06:52:46PM +0200, Lars-Peter Clausen wrote: >>> On 08/18/2014 10:38 AM, Shengjiu Wang wrote: >>>> Build kernel with SND_SOC_IMC_PCM_DMA=m && SND_IMX_SOC=n leads the >>>> following >>>> error: >>>> >>>> sound/built-in.o: In function `fsl_sai_probe': >>>>>> fsl_sai.c:(.text+0x5f662): undefined reference to `imx_pcm_dma_init' >>>> sound/built-in.o: In function `fsl_esai_probe': >>>>>> fsl_esai.c:(.text+0x6044b): undefined reference to `imx_pcm_dma_init' >>>> >>>> Most cpu driver in soc/fsl has use the function 'imx_pcm_dma_init' which is >>>> defined in imx-pcm-dma.c, so need to select SND_SOC_IMX_PCM_DMA, but it >>>> depends >>>> on SND_IMX_SOC, if SND_IMX_SOC=n, then SND_SOC_IMX_PCM_DMA will not be >>>> selected. >>>> So remove the dependence of SND_IMX_SOC for SND_SOC_IMX_PCM_DMA. >>>> >>>> Reported-by: kbuild test robot >>>> Signed-off-by: Shengjiu Wang >>> >>> Those if conditions where just added[1] by Arnd to avoid other build >>> failures. So just removing them again makes little sense. >>> >>> As far as I can see imx_pcm_dma_init() should be stubbed out when >>> SND_SOC_IMX_PCM_DMA is not selected. So what's going on here? >>> >>> [1] >>> http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=ff40260f79dc0436604452bccd449bffd25ebafb >>> >>> >> Lars-Peter Clausen & Arnd >> >> The purpose of Arnd's patch is same with me, which is to resolve the build >> error when SND_SOC_IMX_PCM_DMA=m & SND_SOC_FSL_SSI/SAI/ESAI/SPDIF=y, the >> error is "undefined reference to `imx_pcm_dma_init'". >> But Arnd's patch didn't involve this situation that SND_IMX_SOC=n & >> SND_SOC_IMX_PCM_DMA=m. > > Having SND_SOC_IMX_PCM_DMA selected if SND_IMX_SOC is not selected makes no > sense. I think the proper fix is to find out why it is selected and make > sure that it is not selected when SND_IMX_SOC is not selected. I guess the issue happens if SND_SOC_FSL_ASOC_CARD=m and SND_SOC_FSL_{ESAI,SAI,SSI}=y. In this case the fix is simply to drop the select SND_SOC_IMX_PCM_DMA from SND_SOC_FSL_ASOC_CARD. - Lars