* [PATCH] spi: spi-pxa2xx: only include mach/dma.h for legacy DMA @ 2015-02-03 23:03 Rob Herring [not found] ` <1423004615-16085-1-git-send-email-robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> 0 siblings, 1 reply; 4+ messages in thread From: Rob Herring @ 2015-02-03 23:03 UTC (permalink / raw) To: Mark Brown Cc: Rob Herring, Daniel Mack, Haojian Zhuang, Robert Jarzmik, linux-spi-u79uwXL29TY76Z2rM5mHXA Move the include of mach/dma.h to the legacy PXA DMA code where it is used. This enables building spi-pxa2xx on ARM64. Signed-off-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> Cc: Daniel Mack <daniel-cYrQPVfZoowdnm+yROfE0A@public.gmane.org> Cc: Haojian Zhuang <haojian.zhuang-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> Cc: Robert Jarzmik <robert.jarzmik-GANU6spQydw@public.gmane.org> Cc: Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> Cc: linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org --- drivers/spi/spi-pxa2xx-pxadma.c | 1 + include/linux/spi/pxa2xx_spi.h | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/spi-pxa2xx-pxadma.c b/drivers/spi/spi-pxa2xx-pxadma.c index e8a26f2..e866f2c 100644 --- a/drivers/spi/spi-pxa2xx-pxadma.c +++ b/drivers/spi/spi-pxa2xx-pxadma.c @@ -25,6 +25,7 @@ #include <linux/spi/spi.h> #include <linux/spi/pxa2xx_spi.h> +#include <mach/dma.h> #include "spi-pxa2xx.h" #define DMA_INT_MASK (DCSR_ENDINTR | DCSR_STARTINTR | DCSR_BUSERR) diff --git a/include/linux/spi/pxa2xx_spi.h b/include/linux/spi/pxa2xx_spi.h index d5a3165..46d8fa9 100644 --- a/include/linux/spi/pxa2xx_spi.h +++ b/include/linux/spi/pxa2xx_spi.h @@ -57,7 +57,6 @@ struct pxa2xx_spi_chip { #if defined(CONFIG_ARCH_PXA) || defined(CONFIG_ARCH_MMP) #include <linux/clk.h> -#include <mach/dma.h> extern void pxa2xx_set_spi_info(unsigned id, struct pxa2xx_spi_master *info); -- 2.1.0 -- 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 related [flat|nested] 4+ messages in thread
[parent not found: <1423004615-16085-1-git-send-email-robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>]
* Re: [PATCH] spi: spi-pxa2xx: only include mach/dma.h for legacy DMA [not found] ` <1423004615-16085-1-git-send-email-robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> @ 2015-02-04 10:30 ` Mark Brown [not found] ` <20150204103027.GS21293-GFdadSzt00ze9xe1eoZjHA@public.gmane.org> 2015-02-04 20:14 ` Mark Brown 1 sibling, 1 reply; 4+ messages in thread From: Mark Brown @ 2015-02-04 10:30 UTC (permalink / raw) To: Rob Herring Cc: Daniel Mack, Haojian Zhuang, Robert Jarzmik, linux-spi-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 330 bytes --] On Tue, Feb 03, 2015 at 05:03:35PM -0600, Rob Herring wrote: > Move the include of mach/dma.h to the legacy PXA DMA code where it is used. > This enables building spi-pxa2xx on ARM64. If this enables the building of spi-pxa2xx on ARMv8 I'd expect to see a Kconfig change as well, we're not getting build failures at the minute? [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 473 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <20150204103027.GS21293-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>]
* Re: [PATCH] spi: spi-pxa2xx: only include mach/dma.h for legacy DMA [not found] ` <20150204103027.GS21293-GFdadSzt00ze9xe1eoZjHA@public.gmane.org> @ 2015-02-04 12:58 ` Rob Herring 0 siblings, 0 replies; 4+ messages in thread From: Rob Herring @ 2015-02-04 12:58 UTC (permalink / raw) To: Mark Brown Cc: Daniel Mack, Haojian Zhuang, Robert Jarzmik, linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org On Wed, Feb 4, 2015 at 4:30 AM, Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> wrote: > On Tue, Feb 03, 2015 at 05:03:35PM -0600, Rob Herring wrote: > >> Move the include of mach/dma.h to the legacy PXA DMA code where it is used. >> This enables building spi-pxa2xx on ARM64. > > If this enables the building of spi-pxa2xx on ARMv8 I'd expect to see a > Kconfig change as well, we're not getting build failures at the minute? Sorry, I should have said it is in preparation to enable/add ARCH_MMP on ARM64 for PXA1928. Rob -- 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] 4+ messages in thread
* Re: [PATCH] spi: spi-pxa2xx: only include mach/dma.h for legacy DMA [not found] ` <1423004615-16085-1-git-send-email-robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> 2015-02-04 10:30 ` Mark Brown @ 2015-02-04 20:14 ` Mark Brown 1 sibling, 0 replies; 4+ messages in thread From: Mark Brown @ 2015-02-04 20:14 UTC (permalink / raw) To: Rob Herring Cc: Daniel Mack, Haojian Zhuang, Robert Jarzmik, linux-spi-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 202 bytes --] On Tue, Feb 03, 2015 at 05:03:35PM -0600, Rob Herring wrote: > Move the include of mach/dma.h to the legacy PXA DMA code where it is used. > This enables building spi-pxa2xx on ARM64. Applied, thanks. [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 473 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-02-04 20:14 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-02-03 23:03 [PATCH] spi: spi-pxa2xx: only include mach/dma.h for legacy DMA Rob Herring [not found] ` <1423004615-16085-1-git-send-email-robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> 2015-02-04 10:30 ` Mark Brown [not found] ` <20150204103027.GS21293-GFdadSzt00ze9xe1eoZjHA@public.gmane.org> 2015-02-04 12:58 ` Rob Herring 2015-02-04 20:14 ` Mark Brown
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).