Skip to content

Commit

Permalink
[PARISC] Temporary FIXME for ioremapping EISA regions
Browse files Browse the repository at this point in the history
Signed-off-by: Helge Deller <[email protected]>
Signed-off-by: Kyle McMartin <[email protected]>
  • Loading branch information
Helge Deller authored and Kyle McMartin committed Mar 30, 2006
1 parent 29ef829 commit cb4ab59
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions arch/parisc/mm/ioremap.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,20 +152,21 @@ EXPORT_SYMBOL(__raw_bad_addr);
*/
void __iomem * __ioremap(unsigned long phys_addr, unsigned long size, unsigned long flags)
{
void *addr;
struct vm_struct *area;
unsigned long offset, last_addr;

#ifdef CONFIG_EISA
#error FIXME.
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 */
}
#endif

void *addr;
struct vm_struct *area;
unsigned long offset, last_addr;

/* Don't allow wraparound or zero size */
last_addr = phys_addr + size - 1;
if (!size || last_addr < phys_addr)
Expand Down

0 comments on commit cb4ab59

Please sign in to comment.