linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dma: at_xdmac: use __le32 for dma addresses
@ 2015-03-26 18:08 Ben Dooks
  0 siblings, 0 replies; only message in thread
From: Ben Dooks @ 2015-03-26 18:08 UTC (permalink / raw)
  To: linux-arm-kernel

The at_xdmac uses a lli structure with a mix of dma_addr_t and __le32
in it. As Russell King pointed out, dma_addr_t could be a non 32-bit
size depending on the kernel configuration. Change all references of
this to __le32 to better match the hardware representation.

Note, this does nothing to fix the discussion of dma vs physical
addresses also brought up during these discussions.

This patch depends on the __le32 descriptor updates posted
previously.

Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
--
CC: Russell King <linux@arm.linux.org.uk>
CC: Nicolas Ferre <nicolas.ferre@atmel.com>
CC: Dan Williams <dan.j.williams@intel.com>
CC: Vinod Koul <vinod.koul@intel.com>
CC: linux-arm-kernel at lists.infradead.org
CC: dmaengine at vger.kernel.org
---
 drivers/dma/at_xdmac.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/dma/at_xdmac.c b/drivers/dma/at_xdmac.c
index 65a37be..d9dd71c 100644
--- a/drivers/dma/at_xdmac.c
+++ b/drivers/dma/at_xdmac.c
@@ -231,10 +231,10 @@ struct at_xdmac {
 
 /* Linked List Descriptor */
 struct at_xdmac_lld {
-	dma_addr_t	mbr_nda;	/* Next Descriptor Member */
+	__le32		mbr_nda;	/* Next Descriptor Member */
 	__le32		mbr_ubc;	/* Microblock Control Member */
-	dma_addr_t	mbr_sa;		/* Source Address Member */
-	dma_addr_t	mbr_da;		/* Destination Address Member */
+	__le32		mbr_sa;		/* Source Address Member */
+	__le32		mbr_da;		/* Destination Address Member */
 	__le32		mbr_cfg;	/* Configuration Register */
 };
 
-- 
2.1.4

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-03-26 18:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-26 18:08 [PATCH] dma: at_xdmac: use __le32 for dma addresses Ben Dooks

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