diff options
author | cg <cg@FreeBSD.org> | 2000-07-03 20:52:27 +0000 |
---|---|---|
committer | cg <cg@FreeBSD.org> | 2000-07-03 20:52:27 +0000 |
commit | 809e9b3b6c801fb2ab7667ee1c50701a91d73e2e (patch) | |
tree | 1780dcea06a27f13fc03ed9c3cece3d9aa065d96 /sys/dev/sound/isa/ad1816.c | |
parent | 4f5fa991c057d05f4dcfd6aa70523a20cf07b33f (diff) | |
download | FreeBSD-src-809e9b3b6c801fb2ab7667ee1c50701a91d73e2e.zip FreeBSD-src-809e9b3b6c801fb2ab7667ee1c50701a91d73e2e.tar.gz |
add module metadata. this is a hack, sound drivers will eventually present a
bus to which pcm, mixer, etc will attach.
Diffstat (limited to 'sys/dev/sound/isa/ad1816.c')
-rw-r--r-- | sys/dev/sound/isa/ad1816.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/sound/isa/ad1816.c b/sys/dev/sound/isa/ad1816.c index bcf0715..a041ba9 100644 --- a/sys/dev/sound/isa/ad1816.c +++ b/sys/dev/sound/isa/ad1816.c @@ -619,4 +619,8 @@ static driver_t ad1816_driver = { sizeof(snddev_info), }; -DRIVER_MODULE(ad1816, isa, ad1816_driver, pcm_devclass, 0, 0); +DRIVER_MODULE(snd_ad1816, isa, ad1816_driver, pcm_devclass, 0, 0); +MODULE_DEPEND(snd_ad1816, snd_pcm, PCM_MINVER, PCM_PREFVER, PCM_MAXVER); +MODULE_VERSION(snd_ad1816, 1); + + |