diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-01-29 02:14:29 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-01-29 02:14:29 -0500 |
commit | 9762528f37ddc7071509dddb10e7b4b3b957fd01 (patch) | |
tree | 88febf952479c46ef59c96386e02dd24842685f5 /arch/sh/include | |
parent | abec86a80247ab3a40d2afc9c8e8c26efcab2391 (diff) |
sh: Kill off deprecated fixed PCI memory window accessors.
This kills off the deprected fixed memory range accessors for
the cases of non-translatable ioremapping.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include')
-rw-r--r-- | arch/sh/include/asm/pci.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/arch/sh/include/asm/pci.h b/arch/sh/include/asm/pci.h index 67f3999b544e..f362d8a045e7 100644 --- a/arch/sh/include/asm/pci.h +++ b/arch/sh/include/asm/pci.h | |||
@@ -99,20 +99,6 @@ static inline void pci_dma_burst_advice(struct pci_dev *pdev, | |||
99 | } | 99 | } |
100 | #endif | 100 | #endif |
101 | 101 | ||
102 | #ifdef CONFIG_SUPERH32 | ||
103 | /* | ||
104 | * If we're on an SH7751 or SH7780 PCI controller, PCI memory is mapped | ||
105 | * at the end of the address space in a special non-translatable area. | ||
106 | */ | ||
107 | #define PCI_MEM_FIXED_START 0xfd000000 | ||
108 | #define PCI_MEM_FIXED_END (PCI_MEM_FIXED_START + 0x01000000) | ||
109 | |||
110 | #define is_pci_memory_fixed_range(s, e) \ | ||
111 | ((s) >= PCI_MEM_FIXED_START && (e) < PCI_MEM_FIXED_END) | ||
112 | #else | ||
113 | #define is_pci_memory_fixed_range(s, e) (0) | ||
114 | #endif | ||
115 | |||
116 | /* Board-specific fixup routines. */ | 102 | /* Board-specific fixup routines. */ |
117 | int pcibios_map_platform_irq(struct pci_dev *dev, u8 slot, u8 pin); | 103 | int pcibios_map_platform_irq(struct pci_dev *dev, u8 slot, u8 pin); |
118 | 104 | ||