diff options
author | jhb <jhb@FreeBSD.org> | 2001-10-24 21:44:07 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-10-24 21:44:07 +0000 |
commit | db5d9e122b911b46d76df61b88dea905bdf31e10 (patch) | |
tree | 5f7e9ed4abdfa799841ca862be34ecd2b0c256d2 /sys/dev/sound/pci/vibes.c | |
parent | 92be3d689ffa37cf9856e96fc2151af51e576602 (diff) | |
download | FreeBSD-src-db5d9e122b911b46d76df61b88dea905bdf31e10.zip FreeBSD-src-db5d9e122b911b46d76df61b88dea905bdf31e10.tar.gz |
Change the module name from 'snd_sonicvibes' to 'snd_vibes' as that is
the filename (thus the "old" module name) and the name used by
snd_driver.ko.
Diffstat (limited to 'sys/dev/sound/pci/vibes.c')
-rw-r--r-- | sys/dev/sound/pci/vibes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/sound/pci/vibes.c b/sys/dev/sound/pci/vibes.c index bd13416..e4232c0 100644 --- a/sys/dev/sound/pci/vibes.c +++ b/sys/dev/sound/pci/vibes.c @@ -940,6 +940,6 @@ static driver_t sonicvibes_driver = { PCM_SOFTC_SIZE }; -DRIVER_MODULE(snd_sonicvibes, pci, sonicvibes_driver, pcm_devclass, 0, 0); -MODULE_DEPEND(snd_sonicvibes, snd_pcm, PCM_MINVER, PCM_PREFVER, PCM_MAXVER); -MODULE_VERSION(snd_sonicvibes, 1); +DRIVER_MODULE(snd_vibes, pci, sonicvibes_driver, pcm_devclass, 0, 0); +MODULE_DEPEND(snd_vibes, snd_pcm, PCM_MINVER, PCM_PREFVER, PCM_MAXVER); +MODULE_VERSION(snd_vibes, 1); |