Bus: remove useless isaConvertRange2Host

This commit is contained in:
Adam Jackson 2008-10-11 20:51:39 -04:00
parent a96db74c2a
commit 6b198daa46
3 changed files with 0 additions and 10 deletions

View File

@ -1347,9 +1347,6 @@ convertRange2Host(int entityIndex, resRange *pRange)
case BUS_PCI:
pciConvertRange2Host(entityIndex,pRange);
break;
case BUS_ISA:
isaConvertRange2Host(pRange);
break;
default:
break;
}

View File

@ -133,9 +133,3 @@ xf86IsPrimaryIsa(void)
{
return ( primaryBus.type == BUS_ISA );
}
void
isaConvertRange2Host(resRange *pRange)
{
return;
}

View File

@ -70,6 +70,5 @@ void PciBusStateEnter(void);
void PciStateLeave(void);
void PciBusStateLeave(void);
void pciConvertRange2Host(int entityIndex, resRange *pRange);
void isaConvertRange2Host(resRange *pRange);
#endif /* _XF86_PCI_BUS_H */