Remove haveseen_iobase() - it is no longer called from anywhere in the

kernel.
This commit is contained in:
Peter Wemm 2000-05-28 10:11:49 +00:00
parent 724a60faf8
commit 11ffbffb13
2 changed files with 0 additions and 23 deletions

View File

@ -296,23 +296,3 @@ isa_wrap_old_drivers(void)
devclass_add_driver(isa_devclass, driver);
}
}
int
haveseen_iobase(struct isa_device *dvp, int size)
{
int rid;
struct resource *res;
device_t dev = dvp->id_device;
int base = dvp->id_iobase;
/*
* Ask for resource 1 so that we don't hurt our hints. In theory
* this should work, but....
*/
rid = 1;
res = bus_alloc_resource(dev, SYS_RES_IOPORT,
&rid, base, base + size, size, RF_ACTIVE);
if (res)
bus_release_resource(dev, SYS_RES_IOPORT, rid, res);
return res ? 0 : 1;
}

View File

@ -91,10 +91,7 @@ struct isa_driver {
};
#ifdef _KERNEL
int haveseen_iobase __P((struct isa_device *dvp, int iosize));
int isa_compat_nextid __P((void));
#endif
#endif /* COMPAT_OLDISA */