From: FUJITA Tomonori Date: Wed, 27 Oct 2010 22:34:47 +0000 (-0700) Subject: mips: remove dma64_addr_t usage X-Git-Tag: upstream/snapshot3+hdmi~12627^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1c7438dbbd03442ff86066843485db7fadd67bd;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git mips: remove dma64_addr_t usage dma64_addr_t looks pointless (at least there is no point that an architecture has the own dma64_addr_t typedef). dma_addr_t is set to 32 or 64 bits appropriately. You can use u64 at places where you know that 64 bit address is always necessary. Let's use u64 instead for mips. Signed-off-by: FUJITA Tomonori Cc: Ralf Baechle Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/mips/include/asm/pci/bridge.h b/arch/mips/include/asm/pci/bridge.h index 5f4b9d4..f1f508e 100644 --- a/arch/mips/include/asm/pci/bridge.h +++ b/arch/mips/include/asm/pci/bridge.h @@ -839,7 +839,7 @@ struct bridge_controller { nasid_t nasid; unsigned int widget_id; unsigned int irq_cpu; - dma64_addr_t baddr; + u64 baddr; unsigned int pci_int[8]; };