Commit b9579689 authored by Becky Bruce's avatar Becky Bruce Committed by Kumar Gala

powerpc: Make dma_addr_t a u64 if CONFIG_PHYS_64BIT is set

Signed-off-by: default avatarBecky Bruce <becky.bruce@freescale.com>
Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
parent 4fc665b8
...@@ -55,7 +55,7 @@ typedef u64 phys_addr_t; ...@@ -55,7 +55,7 @@ typedef u64 phys_addr_t;
typedef u32 phys_addr_t; typedef u32 phys_addr_t;
#endif #endif
#ifdef __powerpc64__ #if defined(__powerpc64__) || defined(CONFIG_PHYS_64BIT)
typedef u64 dma_addr_t; typedef u64 dma_addr_t;
#else #else
typedef u32 dma_addr_t; typedef u32 dma_addr_t;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment