diff options
| -rw-r--r-- | arch/parisc/mm/ioremap.c | 8 | ||||
| -rw-r--r-- | include/asm-parisc/pci.h | 5 |
2 files changed, 8 insertions, 5 deletions
diff --git a/arch/parisc/mm/ioremap.c b/arch/parisc/mm/ioremap.c index a5967b7d3726..5067ea90d91a 100644 --- a/arch/parisc/mm/ioremap.c +++ b/arch/parisc/mm/ioremap.c | |||
| @@ -135,11 +135,9 @@ void __iomem * __ioremap(unsigned long phys_addr, unsigned long size, unsigned l | |||
| 135 | #ifdef CONFIG_EISA | 135 | #ifdef CONFIG_EISA |
| 136 | unsigned long end = phys_addr + size - 1; | 136 | unsigned long end = phys_addr + size - 1; |
| 137 | /* Support EISA addresses */ | 137 | /* Support EISA addresses */ |
| 138 | if ((phys_addr >= 0x00080000 && end < 0x000fffff) | 138 | if ((phys_addr >= 0x00080000 && end < 0x000fffff) || |
| 139 | || (phys_addr >= 0x00500000 && end < 0x03bfffff)) { | 139 | (phys_addr >= 0x00500000 && end < 0x03bfffff)) { |
| 140 | phys_addr |= 0xfc000000; | 140 | phys_addr |= F_EXTEND(0xfc000000); |
| 141 | #warning "FIXME: EISA regions do not work yet..." | ||
| 142 | return NULL; /* XXX */ | ||
| 143 | } | 141 | } |
| 144 | #endif | 142 | #endif |
| 145 | 143 | ||
diff --git a/include/asm-parisc/pci.h b/include/asm-parisc/pci.h index fe7f6a2f5aa7..77bbafb7f73e 100644 --- a/include/asm-parisc/pci.h +++ b/include/asm-parisc/pci.h | |||
| @@ -289,4 +289,9 @@ static inline void pcibios_add_platform_entries(struct pci_dev *dev) | |||
| 289 | { | 289 | { |
| 290 | } | 290 | } |
| 291 | 291 | ||
| 292 | static inline void pcibios_penalize_isa_irq(int irq, int active) | ||
| 293 | { | ||
| 294 | /* We don't need to penalize isa irq's */ | ||
| 295 | } | ||
| 296 | |||
| 292 | #endif /* __ASM_PARISC_PCI_H */ | 297 | #endif /* __ASM_PARISC_PCI_H */ |
