Change the module name from 'snd_cmipci' to 'snd_cmi' to match the

filename, module name in the loader, the dependency in snd_driver.ko, and
to be consistent with other sound drivers.
This commit is contained in:
John Baldwin 2001-10-24 21:35:31 +00:00
parent 04c2a8f6be
commit ee1fbec1bf

View File

@ -981,6 +981,6 @@ static driver_t cmi_driver = {
PCM_SOFTC_SIZE
};
DRIVER_MODULE(snd_cmipci, pci, cmi_driver, pcm_devclass, 0, 0);
MODULE_DEPEND(snd_cmipci, snd_pcm, PCM_MINVER, PCM_PREFVER, PCM_MAXVER);
MODULE_VERSION(snd_cmipci, 1);
DRIVER_MODULE(snd_cmi, pci, cmi_driver, pcm_devclass, 0, 0);
MODULE_DEPEND(snd_cmi, snd_pcm, PCM_MINVER, PCM_PREFVER, PCM_MAXVER);
MODULE_VERSION(snd_cmi, 1);