powerpc: Make dma_addr_t a u64 if CONFIG_PHYS_64BIT is set
authorBecky Bruce <becky.bruce@freescale.com>
Fri, 12 Sep 2008 10:53:43 +0000 (10:53 +0000)
committerKumar Gala <galak@kernel.crashing.org>
Wed, 24 Sep 2008 21:26:45 +0000 (16:26 -0500)
Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
arch/powerpc/include/asm/types.h

index d3374bc865ba565c803056ed33cc57d64241d670..a9a9262e84a3c49da35c456c75cfbe7ad79087f7 100644 (file)
@@ -55,7 +55,7 @@ typedef u64 phys_addr_t;
 typedef u32 phys_addr_t;
 #endif
 
-#ifdef __powerpc64__
+#if defined(__powerpc64__) || defined(CONFIG_PHYS_64BIT)
 typedef u64 dma_addr_t;
 #else
 typedef u32 dma_addr_t;