linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] spi: cadence: Add dependency on ARCH_ARM
@ 2014-04-15 10:12 Harini Katakam
       [not found] ` <1397556735-2536-1-git-send-email-harinik-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Harini Katakam @ 2014-04-15 10:12 UTC (permalink / raw)
  To: broonie, linux-spi, linux-kernel; +Cc: michals, Harini Katakam

Add dependency on ARCH_ARM in Kconfig.
This is to fix the build error related to _relaxed IO.

Signed-off-by: Harini Katakam <harinik@xilinx.com>
---

v2 changes:
Dependency on ARCH_ARM instead of restricting to ARCH_ZYNQ.

---
 drivers/spi/Kconfig |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig
index b0f091b..32c27dd 100644
--- a/drivers/spi/Kconfig
+++ b/drivers/spi/Kconfig
@@ -150,6 +150,7 @@ config SPI_BUTTERFLY
 
 config SPI_CADENCE
 	tristate "Cadence SPI controller"
+	depends on ARCH_ARM
 	depends on SPI_MASTER
 	help
 	  This selects the Cadence SPI controller master driver
-- 
1.7.9.5

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

* Re: [PATCH v2] spi: cadence: Add dependency on ARCH_ARM
       [not found] ` <1397556735-2536-1-git-send-email-harinik-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
@ 2014-04-15 10:22   ` Paul Bolle
  2014-04-15 10:40     ` Harini Katakam
  0 siblings, 1 reply; 3+ messages in thread
From: Paul Bolle @ 2014-04-15 10:22 UTC (permalink / raw)
  To: Harini Katakam
  Cc: broonie-DgEjT+Ai2ygdnm+yROfE0A, linux-spi-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	michals-gjFFaj9aHVfQT0dZR+AlfA

On Tue, 2014-04-15 at 15:42 +0530, Harini Katakam wrote:
> Add dependency on ARCH_ARM in Kconfig.
> This is to fix the build error related to _relaxed IO.
> 
> Signed-off-by: Harini Katakam <harinik-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
> ---
> 
> v2 changes:
> Dependency on ARCH_ARM instead of restricting to ARCH_ZYNQ.
> 
> ---
>  drivers/spi/Kconfig |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig
> index b0f091b..32c27dd 100644
> --- a/drivers/spi/Kconfig
> +++ b/drivers/spi/Kconfig
> @@ -150,6 +150,7 @@ config SPI_BUTTERFLY
>  
>  config SPI_CADENCE
>  	tristate "Cadence SPI controller"
> +	depends on ARCH_ARM

Did you mean just ARM?

>  	depends on SPI_MASTER
>  	help
>  	  This selects the Cadence SPI controller master driver


Paul Bolle

--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH v2] spi: cadence: Add dependency on ARCH_ARM
  2014-04-15 10:22   ` Paul Bolle
@ 2014-04-15 10:40     ` Harini Katakam
  0 siblings, 0 replies; 3+ messages in thread
From: Harini Katakam @ 2014-04-15 10:40 UTC (permalink / raw)
  To: Paul Bolle
  Cc: Mark Brown, linux-spi-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	michals-gjFFaj9aHVfQT0dZR+AlfA

Hi,

On Tue, Apr 15, 2014 at 3:52 PM, Paul Bolle <pebolle-IWqWACnzNjzz+pZb47iToQ@public.gmane.org> wrote:
> On Tue, 2014-04-15 at 15:42 +0530, Harini Katakam wrote:
>> Add dependency on ARCH_ARM in Kconfig.
>> This is to fix the build error related to _relaxed IO.
>>
>> Signed-off-by: Harini Katakam <harinik-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
>> ---
>>
>> v2 changes:
>> Dependency on ARCH_ARM instead of restricting to ARCH_ZYNQ.
>>
>> ---
>>  drivers/spi/Kconfig |    1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig
>> index b0f091b..32c27dd 100644
>> --- a/drivers/spi/Kconfig
>> +++ b/drivers/spi/Kconfig
>> @@ -150,6 +150,7 @@ config SPI_BUTTERFLY
>>
>>  config SPI_CADENCE
>>       tristate "Cadence SPI controller"
>> +     depends on ARCH_ARM
>
> Did you mean just ARM?

Please ignore patch, I will resend it.

Regards,
Harini
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2014-04-15 10:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-15 10:12 [PATCH v2] spi: cadence: Add dependency on ARCH_ARM Harini Katakam
     [not found] ` <1397556735-2536-1-git-send-email-harinik-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
2014-04-15 10:22   ` Paul Bolle
2014-04-15 10:40     ` Harini Katakam

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