NODEVFS cleanup: remove calls to cdevsw_remove()

This commit is contained in:
Poul-Henning Kamp 2003-02-26 20:20:58 +00:00
parent f0603d5be6
commit 81d4b45da7

View File

@ -151,7 +151,6 @@ tunmodevent(module_t mod, int type, void *data)
tununits.rm_descr = "open if_tun units";
err = rman_init(&tununits);
if (err != 0) {
cdevsw_remove(&tun_cdevsw);
EVENTHANDLER_DEREGISTER(dev_clone, tag);
return (err);
}
@ -160,7 +159,6 @@ tunmodevent(module_t mod, int type, void *data)
printf("%s: tununits: rman_manage_region: Failed %d\n",
TUNNAME, err);
rman_fini(&tununits);
cdevsw_remove(&tun_cdevsw);
EVENTHANDLER_DEREGISTER(dev_clone, tag);
return (err);
}