summaryrefslogtreecommitdiffstats
path: root/include/asm-ppc64
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2005-10-25 08:56:43 +0200
committerPaul Mackerras <paulus@samba.org>2005-10-27 08:45:50 +0200
commit8168f902fa9c2ca8930ea8d72cce283234df03b8 (patch)
tree2a7bd8d19692e6ba5f86b92d35a8dc8206fc0ff1 /include/asm-ppc64
parentpowerpc: undeprecate the old OF device tree accessors for now (diff)
downloadlinux-8168f902fa9c2ca8930ea8d72cce283234df03b8.tar.xz
linux-8168f902fa9c2ca8930ea8d72cce283234df03b8.zip
[PATCH] ppc64: make dma_addr_t 64 bits
There has been a need expressed for dma_addr_t to be 64 bits on PPC64. This patch does that. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-ppc64')
-rw-r--r--include/asm-ppc64/scatterlist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-ppc64/scatterlist.h b/include/asm-ppc64/scatterlist.h
index cecce6c6dfbb..65a2a027ac94 100644
--- a/include/asm-ppc64/scatterlist.h
+++ b/include/asm-ppc64/scatterlist.h
@@ -19,7 +19,7 @@ struct scatterlist {
unsigned int length;
/* For TCE support */
- u32 dma_address;
+ dma_addr_t dma_address;
u32 dma_length;
};