Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24821
b: refs/heads/master
c: 10267cd
h: refs/heads/master
i:
  24819: a7a4066
v: v3
  • Loading branch information
Helge Deller authored and Kyle McMartin committed Mar 30, 2006
1 parent 44d6f80 commit d17878a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b29eac43023bb1b62081efa878c3cf72cb39c437
refs/heads/master: 10267cdd0c2dee46a3f59d93fbfac7229d416dba
8 changes: 3 additions & 5 deletions trunk/arch/parisc/mm/ioremap.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,9 @@ void __iomem * __ioremap(unsigned long phys_addr, unsigned long size, unsigned l
#ifdef CONFIG_EISA
unsigned long end = phys_addr + size - 1;
/* Support EISA addresses */
if ((phys_addr >= 0x00080000 && end < 0x000fffff)
|| (phys_addr >= 0x00500000 && end < 0x03bfffff)) {
phys_addr |= 0xfc000000;
#warning "FIXME: EISA regions do not work yet..."
return NULL; /* XXX */
if ((phys_addr >= 0x00080000 && end < 0x000fffff) ||
(phys_addr >= 0x00500000 && end < 0x03bfffff)) {
phys_addr |= F_EXTEND(0xfc000000);
}
#endif

Expand Down
5 changes: 5 additions & 0 deletions trunk/include/asm-parisc/pci.h
Original file line number Diff line number Diff line change
Expand Up @@ -289,4 +289,9 @@ static inline void pcibios_add_platform_entries(struct pci_dev *dev)
{
}

static inline void pcibios_penalize_isa_irq(int irq, int active)
{
/* We don't need to penalize isa irq's */
}

#endif /* __ASM_PARISC_PCI_H */

0 comments on commit d17878a

Please sign in to comment.