Hi,
I noticed in the function 'linux-2.6/drivers/parisc/lba_pci.c: lba_pat_resources(
)' the following lines:
---------------------------------------------------------------
case PAT_GMMIO:
r = &(lba_dev->hba.gmmio_space);
r->name = "LBA GMMIO";
r->start = p->start;
r->end = p->end;
r->flags = IORESOURCE_MEM;
r->parent = r->sibling = r->child = NULL;
break;
lba_dev->gmmio_base = p->start;
break;
case PAT_NPIOP:
printk(KERN_WARNING MODULE_NAME
" range[%d] : ignoring NPIOP (0x%lx)\n",
i, p->start);
break;
-------------------------------------------------------------------
Please note the extra lines after the 'break;'. The version of 'lba_pci.c' is 1.7. Seems to have happened due to oversight.
Thanks,
Naresh.