Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <fujita.tomonori@lab.ntt.co.jp>
Cc: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

FUJITA Tomonori and committed by
Linus Torvalds
c1c7438d 4ad9b208

+1 -1
+1 -1
arch/mips/include/asm/pci/bridge.h
··· 839 839 nasid_t nasid; 840 840 unsigned int widget_id; 841 841 unsigned int irq_cpu; 842 - dma64_addr_t baddr; 842 + u64 baddr; 843 843 unsigned int pci_int[8]; 844 844 }; 845 845