openbsd-20030204

Get rid of afsmodload() in favor of libafs_lkmentry()
This commit is contained in:
Jim Rees 2003-02-04 16:39:55 +00:00
parent 146ca01c9f
commit 7a4e715d13

View File

@ -511,7 +511,7 @@ afs_vfs_unload(struct lkm_table *lktmp, int cmd)
}
int
afsmodload(struct lkm_table *lkmtp, int cmd, int ver)
libafs_lkmentry(struct lkm_table *lkmtp, int cmd, int ver)
{
if (cmd == LKM_E_LOAD) {
if (strcmp(ostype, afs_NetBSD_osname)) {
@ -528,9 +528,3 @@ afsmodload(struct lkm_table *lkmtp, int cmd, int ver)
}
DISPATCH(lkmtp,cmd,ver,afs_vfs_load,afs_vfs_unload,lkm_nofunc);
}
int
libafs_lkmentry(struct lkm_table *lkmtp, int cmd, int ver)
{
return afsmodload(lkmtp, cmd, ver);
}