Don't print out a message on loading a module. 'kldload -v' and 'kldstat

| grep <modname>' can be used instead.

Put a message behind bootverbose as

	ichwd0: <Intel ICH6M watchdog timer> on isa0
	ichwd0: Intel ICH6M watchdog timer (ICH6 or equivalent)

does not make a lot of sense.

MFC after:	1 week
This commit is contained in:
Nick Hibma 2009-09-10 18:33:08 +00:00
parent b22692bd0a
commit 9ee1df0ce5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=197072
2 changed files with 2 additions and 23 deletions

View file

@ -465,7 +465,7 @@ ichwd_attach(device_t dev)
if (ichwd_clear_noreboot(sc) != 0)
goto fail;
device_printf(dev, "%s (ICH%d or equivalent)\n",
ichwd_verbose_printf(dev, "%s (ICH%d or equivalent)\n",
device_get_desc(dev), sc->ich_version);
/*
@ -553,23 +553,4 @@ static driver_t ichwd_driver = {
sizeof(struct ichwd_softc),
};
static int
ichwd_modevent(module_t mode, int type, void *data)
{
int error = 0;
switch (type) {
case MOD_LOAD:
printf("ichwd module loaded\n");
break;
case MOD_UNLOAD:
printf("ichwd module unloaded\n");
break;
case MOD_SHUTDOWN:
printf("ichwd module shutting down\n");
break;
}
return (error);
}
DRIVER_MODULE(ichwd, isa, ichwd_driver, ichwd_devclass, ichwd_modevent, NULL);
DRIVER_MODULE(ichwd, isa, ichwd_driver, ichwd_devclass, NULL, NULL);

View file

@ -352,7 +352,6 @@ nsmb_dev_load(module_t mod, int cmd, void *arg)
}
clone_setup(&nsmb_clones);
nsmb_dev_tag = EVENTHANDLER_REGISTER(dev_clone, nsmb_dev_clone, 0, 1000);
printf("netsmb_dev: loaded\n");
break;
case MOD_UNLOAD:
smb_iod_done();
@ -363,7 +362,6 @@ nsmb_dev_load(module_t mod, int cmd, void *arg)
drain_dev_clone_events();
clone_cleanup(&nsmb_clones);
destroy_dev_drain(&nsmb_cdevsw);
printf("netsmb_dev: unloaded\n");
break;
default:
error = EINVAL;