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=-10.0 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,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 8F570C35295 for ; Fri, 4 Sep 2020 18:10:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D615F2536D for ; Fri, 4 Sep 2020 18:04:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726833AbgIDRcm (ORCPT ); Fri, 4 Sep 2020 13:32:42 -0400 Received: from gloria.sntech.de ([185.11.138.130]:56054 "EHLO gloria.sntech.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725984AbgIDRcl (ORCPT ); Fri, 4 Sep 2020 13:32:41 -0400 Received: from ip5f5aa64a.dynamic.kabel-deutschland.de ([95.90.166.74] helo=diego.localnet) by gloria.sntech.de with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kEFZa-0007FR-A3; Fri, 04 Sep 2020 19:32:26 +0200 From: Heiko =?ISO-8859-1?Q?St=FCbner?= To: Alex Dewar Cc: Alex Dewar , Jonathan Cameron , Hartmut Knaack , Lars-Peter Clausen , Peter Meerwald-Stadler , Philipp Zabel , Alexandru Ardelean , Andy Shevchenko , Beniamin Bia , Michael Hennerich , Linus Walleij , Artur Rojek , Alexandru Tachici , Vincent Pelletier , Saravanan Sekar , Miquel Raynal , linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-rockchip@lists.infradead.org Subject: Re: [PATCH] iio: adc: rockchip_saradc: Allow compile-testing with !ARM Date: Fri, 04 Sep 2020 19:32:22 +0200 Message-ID: <1602652.ZmzXO7uU3z@diego> In-Reply-To: <20200904170416.16061-1-alex.dewar90@gmail.com> References: <20200904170416.16061-1-alex.dewar90@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-iio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org Am Freitag, 4. September 2020, 19:04:16 CEST schrieb Alex Dewar: > There seems no reason to allow for compile-testing on ARM only, so > remove this restriction. > > Build-tested with allyesconfig on x86. > > Signed-off-by: Alex Dewar Reviewed-by: Heiko Stuebner > --- > drivers/iio/adc/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/iio/adc/Kconfig b/drivers/iio/adc/Kconfig > index d94dc800b842..03929606bb01 100644 > --- a/drivers/iio/adc/Kconfig > +++ b/drivers/iio/adc/Kconfig > @@ -863,7 +863,7 @@ config RN5T618_ADC > > config ROCKCHIP_SARADC > tristate "Rockchip SARADC driver" > - depends on ARCH_ROCKCHIP || (ARM && COMPILE_TEST) > + depends on ARCH_ROCKCHIP || COMPILE_TEST > depends on RESET_CONTROLLER > select IIO_BUFFER > select IIO_TRIGGERED_BUFFER >