linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] iio: adc: rockchip_saradc: Allow compile-testing with !ARM
@ 2020-09-04 17:04 Alex Dewar
  2020-09-04 17:32 ` Heiko Stübner
  0 siblings, 1 reply; 3+ messages in thread
From: Alex Dewar @ 2020-09-04 17:04 UTC (permalink / raw)
  Cc: Alex Dewar, Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen,
	Peter Meerwald-Stadler, Heiko Stuebner, Philipp Zabel,
	Alexandru Ardelean, Andy Shevchenko, Beniamin Bia,
	Michael Hennerich, Linus Walleij, Artur Rojek, Alexandru Tachici,
	Vincent Pelletier, Saravanan Sekar, Miquel Raynal, linux-iio,
	linux-kernel, linux-arm-kernel, linux-rockchip

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 <alex.dewar90@gmail.com>
---
 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
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] iio: adc: rockchip_saradc: Allow compile-testing with !ARM
  2020-09-04 17:04 [PATCH] iio: adc: rockchip_saradc: Allow compile-testing with !ARM Alex Dewar
@ 2020-09-04 17:32 ` Heiko Stübner
  2020-09-06 13:27   ` Jonathan Cameron
  0 siblings, 1 reply; 3+ messages in thread
From: Heiko Stübner @ 2020-09-04 17:32 UTC (permalink / raw)
  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, linux-kernel,
	linux-arm-kernel, linux-rockchip

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 <alex.dewar90@gmail.com>

Reviewed-by: Heiko Stuebner <heiko@sntech.de>

> ---
>  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
> 





^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] iio: adc: rockchip_saradc: Allow compile-testing with !ARM
  2020-09-04 17:32 ` Heiko Stübner
@ 2020-09-06 13:27   ` Jonathan Cameron
  0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2020-09-06 13:27 UTC (permalink / raw)
  To: Heiko Stübner
  Cc: Alex Dewar, 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, linux-kernel,
	linux-arm-kernel, linux-rockchip

On Fri, 04 Sep 2020 19:32:22 +0200
Heiko Stübner <heiko@sntech.de> wrote:

> 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 <alex.dewar90@gmail.com>  
> 
> Reviewed-by: Heiko Stuebner <heiko@sntech.de>
Applied to the togreg branch of iio.git and pushed out as testing for
the autobuilders to poke at it and see if we missed anything.

Thanks,

Jonathan

> 
> > ---
> >  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
> >   
> 
> 
> 
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-09-06 13:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-04 17:04 [PATCH] iio: adc: rockchip_saradc: Allow compile-testing with !ARM Alex Dewar
2020-09-04 17:32 ` Heiko Stübner
2020-09-06 13:27   ` Jonathan Cameron

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).