From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 53925C10F11 for ; Mon, 22 Apr 2019 10:16:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 188CF20874 for ; Mon, 22 Apr 2019 10:16:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1555928212; bh=3TRFGMvJmSa/ZGijQzF5Eyf501z0S9bymkbnBQrSqUs=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-ID:From; b=GeantUTT2084AEipXxXw6N/6Rt2FSF0EeAUCDYxfrXfe5QDPMy7WB6DdTotCa0bVD rNkv3uA/fmb1QQ6Ih7b6vGLArUMrPdT3mMqQQhw4stMffB2xP/e217y4X4N7DJloRv jn/xGPGkub3/10h8tad8FvlOzFU136M4Xng75/Bg= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726375AbfDVKQv (ORCPT ); Mon, 22 Apr 2019 06:16:51 -0400 Received: from mail.kernel.org ([198.145.29.99]:40732 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726057AbfDVKQv (ORCPT ); Mon, 22 Apr 2019 06:16:51 -0400 Received: from archlinux (cpc91196-cmbg18-2-0-cust659.5-4.cable.virginm.net [81.96.234.148]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 3AF23206A3; Mon, 22 Apr 2019 10:16:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1555928210; bh=3TRFGMvJmSa/ZGijQzF5Eyf501z0S9bymkbnBQrSqUs=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=DEMfSg12iVfykAD87dISJs+7YRgeHmOJPGgAQVxefp5CvJ8BfTGvCipmus7DuOaZl w/dgiz3RSsUxWeo21LSqFHFZmG8glTSS5pAISRZMB2Or9GSqQZ+dgR3sdIAaUY5bff TCfbenXSbTkbPW7L6jTbfJrXytBVoGyOYqMF1Fso= Date: Mon, 22 Apr 2019 11:16:43 +0100 From: Jonathan Cameron To: Fabrice Gasnier Cc: , , , , , , , , , , , , , , Subject: Re: [PATCH 1/2] iio: adc: stm32-dfsdm: fix unmet direct dependencies detected Message-ID: <20190422111643.0270fba6@archlinux> In-Reply-To: <1555333251-4422-2-git-send-email-fabrice.gasnier@st.com> References: <1555333251-4422-1-git-send-email-fabrice.gasnier@st.com> <1555333251-4422-2-git-send-email-fabrice.gasnier@st.com> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-iio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org On Mon, 15 Apr 2019 15:00:50 +0200 Fabrice Gasnier wrote: > This fixes unmet direct dependencies seen when CONFIG_STM32_DFSDM_ADC > is selected: > > WARNING: unmet direct dependencies detected for IIO_BUFFER_HW_CONSUMER > Depends on [n]: IIO [=y] && IIO_BUFFER [=n] > Selected by [y]: > - STM32_DFSDM_ADC [=y] && IIO [=y] && (ARCH_STM32 [=y] && OF [=y] || > COMPILE_TEST [=n]) > > Fixes: e2e6771c6462 ("IIO: ADC: add STM32 DFSDM sigma delta ADC support") > > Signed-off-by: Fabrice Gasnier Hmm. I wonder how we never got this one from a rand config. Anyhow, give we are near the end of this cycle, I'll take this for the next merge window rather than rushing it through. Applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to play with it. Thanks, Jonathan > --- > drivers/iio/adc/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/iio/adc/Kconfig b/drivers/iio/adc/Kconfig > index 846c7ac..b1b2bde 100644 > --- a/drivers/iio/adc/Kconfig > +++ b/drivers/iio/adc/Kconfig > @@ -821,6 +821,7 @@ config STM32_DFSDM_ADC > depends on (ARCH_STM32 && OF) || COMPILE_TEST > select STM32_DFSDM_CORE > select REGMAP_MMIO > + select IIO_BUFFER > select IIO_BUFFER_HW_CONSUMER > help > Select this option to support ADCSigma delta modulator for From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonathan Cameron Subject: Re: [PATCH 1/2] iio: adc: stm32-dfsdm: fix unmet direct dependencies detected Date: Mon, 22 Apr 2019 11:16:43 +0100 Message-ID: <20190422111643.0270fba6@archlinux> References: <1555333251-4422-1-git-send-email-fabrice.gasnier@st.com> <1555333251-4422-2-git-send-email-fabrice.gasnier@st.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1555333251-4422-2-git-send-email-fabrice.gasnier@st.com> Sender: linux-kernel-owner@vger.kernel.org To: Fabrice Gasnier Cc: rdunlap@infradead.org, sfr@canb.auug.org.au, benjamin.gaignard@linaro.org, linux-next@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, mcoquelin.stm32@gmail.com, alexandre.torgue@st.com, linux-iio@vger.kernel.org, lars@metafoo.de, knaack.h@gmx.de, pmeerw@pmeerw.net, linux-stm32@st-md-mailman.stormreply.com, arnaud.pouliquen@st.com, olivier.moysan@st.com List-Id: linux-next.vger.kernel.org On Mon, 15 Apr 2019 15:00:50 +0200 Fabrice Gasnier wrote: > This fixes unmet direct dependencies seen when CONFIG_STM32_DFSDM_ADC > is selected: > > WARNING: unmet direct dependencies detected for IIO_BUFFER_HW_CONSUMER > Depends on [n]: IIO [=y] && IIO_BUFFER [=n] > Selected by [y]: > - STM32_DFSDM_ADC [=y] && IIO [=y] && (ARCH_STM32 [=y] && OF [=y] || > COMPILE_TEST [=n]) > > Fixes: e2e6771c6462 ("IIO: ADC: add STM32 DFSDM sigma delta ADC support") > > Signed-off-by: Fabrice Gasnier Hmm. I wonder how we never got this one from a rand config. Anyhow, give we are near the end of this cycle, I'll take this for the next merge window rather than rushing it through. Applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to play with it. Thanks, Jonathan > --- > drivers/iio/adc/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/iio/adc/Kconfig b/drivers/iio/adc/Kconfig > index 846c7ac..b1b2bde 100644 > --- a/drivers/iio/adc/Kconfig > +++ b/drivers/iio/adc/Kconfig > @@ -821,6 +821,7 @@ config STM32_DFSDM_ADC > depends on (ARCH_STM32 && OF) || COMPILE_TEST > select STM32_DFSDM_CORE > select REGMAP_MMIO > + select IIO_BUFFER > select IIO_BUFFER_HW_CONSUMER > help > Select this option to support ADCSigma delta modulator for From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_PASS, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8F75EC10F11 for ; Mon, 22 Apr 2019 10:17:00 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 62DEF20874 for ; Mon, 22 Apr 2019 10:17:00 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="q8dxDM9a"; dkim=fail reason="signature verification failed" (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="DEMfSg12" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 62DEF20874 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-ID:Subject:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=odItKDXIWEqAT+xVs3il8w5Nd8jsYNwQNDpYhm8YhIY=; b=q8dxDM9aXMI/2q CJnx/XOoHqRYmAWNsX5kUu4dShZ6uCj4WiuTChJ7Tz7QuNaSXJArxAJy8VhSgEEfsNs3M+YycSEzd wwz+mczMxPC53RudMm2OhXkjQE87ZC5CLu9LbZ5MPI5RtGYZqCzRIUC8beo54Z3htfCFtqHUzp1H0 50UeTEDgXAAvoFWyYVYuNbJe1vocTsLaxXeaYTuLSHx+jrxxql3kaRMpqj7NPvbBjMPggwhNiFbql JZPBm5bcJQq14EuAMhKUgBk3vT+iwocAJHRSyHiJD3pwlff2iIA4DkNVt9zS4RIYkWWC9By4f4Ur6 CgdgQV+3V8PzGhBmiZSQ==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1hIW0L-0006tr-J4; Mon, 22 Apr 2019 10:16:53 +0000 Received: from mail.kernel.org ([198.145.29.99]) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1hIW0I-0006tL-S1 for linux-arm-kernel@lists.infradead.org; Mon, 22 Apr 2019 10:16:52 +0000 Received: from archlinux (cpc91196-cmbg18-2-0-cust659.5-4.cable.virginm.net [81.96.234.148]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 3AF23206A3; Mon, 22 Apr 2019 10:16:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1555928210; bh=3TRFGMvJmSa/ZGijQzF5Eyf501z0S9bymkbnBQrSqUs=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=DEMfSg12iVfykAD87dISJs+7YRgeHmOJPGgAQVxefp5CvJ8BfTGvCipmus7DuOaZl w/dgiz3RSsUxWeo21LSqFHFZmG8glTSS5pAISRZMB2Or9GSqQZ+dgR3sdIAaUY5bff TCfbenXSbTkbPW7L6jTbfJrXytBVoGyOYqMF1Fso= Date: Mon, 22 Apr 2019 11:16:43 +0100 From: Jonathan Cameron To: Fabrice Gasnier Subject: Re: [PATCH 1/2] iio: adc: stm32-dfsdm: fix unmet direct dependencies detected Message-ID: <20190422111643.0270fba6@archlinux> In-Reply-To: <1555333251-4422-2-git-send-email-fabrice.gasnier@st.com> References: <1555333251-4422-1-git-send-email-fabrice.gasnier@st.com> <1555333251-4422-2-git-send-email-fabrice.gasnier@st.com> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20190422_031650_926580_DD94AEA4 X-CRM114-Status: GOOD ( 15.68 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: sfr@canb.auug.org.au, lars@metafoo.de, olivier.moysan@st.com, mcoquelin.stm32@gmail.com, linux-iio@vger.kernel.org, pmeerw@pmeerw.net, rdunlap@infradead.org, arnaud.pouliquen@st.com, linux-kernel@vger.kernel.org, linux-next@vger.kernel.org, benjamin.gaignard@linaro.org, knaack.h@gmx.de, linux-stm32@st-md-mailman.stormreply.com, linux-arm-kernel@lists.infradead.org, alexandre.torgue@st.com Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon, 15 Apr 2019 15:00:50 +0200 Fabrice Gasnier wrote: > This fixes unmet direct dependencies seen when CONFIG_STM32_DFSDM_ADC > is selected: > > WARNING: unmet direct dependencies detected for IIO_BUFFER_HW_CONSUMER > Depends on [n]: IIO [=y] && IIO_BUFFER [=n] > Selected by [y]: > - STM32_DFSDM_ADC [=y] && IIO [=y] && (ARCH_STM32 [=y] && OF [=y] || > COMPILE_TEST [=n]) > > Fixes: e2e6771c6462 ("IIO: ADC: add STM32 DFSDM sigma delta ADC support") > > Signed-off-by: Fabrice Gasnier Hmm. I wonder how we never got this one from a rand config. Anyhow, give we are near the end of this cycle, I'll take this for the next merge window rather than rushing it through. Applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to play with it. Thanks, Jonathan > --- > drivers/iio/adc/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/iio/adc/Kconfig b/drivers/iio/adc/Kconfig > index 846c7ac..b1b2bde 100644 > --- a/drivers/iio/adc/Kconfig > +++ b/drivers/iio/adc/Kconfig > @@ -821,6 +821,7 @@ config STM32_DFSDM_ADC > depends on (ARCH_STM32 && OF) || COMPILE_TEST > select STM32_DFSDM_CORE > select REGMAP_MMIO > + select IIO_BUFFER > select IIO_BUFFER_HW_CONSUMER > help > Select this option to support ADCSigma delta modulator for _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel