summaryrefslogtreecommitdiffstats
path: root/arch/sparc
diff options
context:
space:
mode:
authorFUJITA Tomonori2010-10-28 00:34:47 +0200
committerLinus Torvalds2010-10-28 03:03:17 +0200
commit4ad9b208cf1d03c8c3c1e0063ee6eea88833118f (patch)
tree4f2283a69db5edcb6d4587cc9a8cc2f59f6a960c /arch/sparc
parentfuse: use release_pages() (diff)
downloadkernel-qcow2-linux-4ad9b208cf1d03c8c3c1e0063ee6eea88833118f.tar.gz
kernel-qcow2-linux-4ad9b208cf1d03c8c3c1e0063ee6eea88833118f.tar.xz
kernel-qcow2-linux-4ad9b208cf1d03c8c3c1e0063ee6eea88833118f.zip
sparc: 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 sparc32. Looks like PCI654_REQUIRED_MASK or PCI64_ADR_BASE isn't used. They can be removed? Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Acked-by: David Miller <davem@davemloft.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/sparc')
-rw-r--r--arch/sparc/include/asm/pci_64.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/include/asm/pci_64.h b/arch/sparc/include/asm/pci_64.h
index 5312782f0b5e..948b686ec089 100644
--- a/arch/sparc/include/asm/pci_64.h
+++ b/arch/sparc/include/asm/pci_64.h
@@ -38,7 +38,7 @@ static inline void pcibios_penalize_isa_irq(int irq, int active)
* types on sparc64. However, it requires that the device
* can drive enough of the 64 bits.
*/
-#define PCI64_REQUIRED_MASK (~(dma64_addr_t)0)
+#define PCI64_REQUIRED_MASK (~(u64)0)
#define PCI64_ADDR_BASE 0xfffc000000000000UL
#ifdef CONFIG_PCI