diff options
author | jhb <jhb@FreeBSD.org> | 2001-10-24 21:35:31 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-10-24 21:35:31 +0000 |
commit | dc2dd8ef90971184a3d415808820922129fd01bf (patch) | |
tree | bb23f9b4ca7d588b1115ef7064077a19b0f2d035 /sys/dev/sound/pci/cmi.c | |
parent | aa73531f830478b3ae949cf2d2109ff126da0998 (diff) | |
download | FreeBSD-src-dc2dd8ef90971184a3d415808820922129fd01bf.zip FreeBSD-src-dc2dd8ef90971184a3d415808820922129fd01bf.tar.gz |
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.
Diffstat (limited to 'sys/dev/sound/pci/cmi.c')
-rw-r--r-- | sys/dev/sound/pci/cmi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/sound/pci/cmi.c b/sys/dev/sound/pci/cmi.c index e5adc05..9529b86 100644 --- a/sys/dev/sound/pci/cmi.c +++ b/sys/dev/sound/pci/cmi.c @@ -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); |