Zap devsw_module_handler().

This commit is contained in:
Peter Wemm 1999-11-08 08:10:00 +00:00
parent 80855566e2
commit 900942ba53
3 changed files with 0 additions and 14 deletions

View File

@ -172,18 +172,6 @@ cdevsw_remove(struct cdevsw *oldentry)
return 0;
}
int
devsw_module_handler(module_t mod, int what, void* arg)
{
struct devsw_module_data* data = (struct devsw_module_data*) arg;
int error = 0;
if (data->chainevh)
return data->chainevh(mod, what, data->chainarg);
else
return 0;
}
/*
* dev_t and u_dev_t primitives
*/

View File

@ -260,7 +260,6 @@ int cdevsw_remove __P((struct cdevsw *old));
dev_t chrtoblk __P((dev_t dev));
void destroy_dev __P((dev_t dev));
struct cdevsw *devsw __P((dev_t dev));
int devsw_module_handler __P((struct module *mod, int what, void *arg));
const char *devtoname __P((dev_t dev));
void freedev __P((dev_t dev));
int iszerodev __P((dev_t dev));

View File

@ -260,7 +260,6 @@ int cdevsw_remove __P((struct cdevsw *old));
dev_t chrtoblk __P((dev_t dev));
void destroy_dev __P((dev_t dev));
struct cdevsw *devsw __P((dev_t dev));
int devsw_module_handler __P((struct module *mod, int what, void *arg));
const char *devtoname __P((dev_t dev));
void freedev __P((dev_t dev));
int iszerodev __P((dev_t dev));