diff options
author | Leon Romanovsky <leonro@nvidia.com> | 2021-03-17 11:45:47 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2021-03-17 21:16:18 +0100 |
commit | 6417f03132a6952cd17ddd8eaddbac92b61b17e0 (patch) | |
tree | 21acfe9dc0b62cca8c29e1c216aea6bdb0492f4f /sound/isa/opl3sa2.c | |
parent | Merge tag 'mips-fixes_5.12_2' of git://git.kernel.org/pub/scm/linux/kernel/gi... (diff) | |
download | linux-6417f03132a6952cd17ddd8eaddbac92b61b17e0.tar.xz linux-6417f03132a6952cd17ddd8eaddbac92b61b17e0.zip |
module: remove never implemented MODULE_SUPPORTED_DEVICE
MODULE_SUPPORTED_DEVICE was added in pre-git era and never was
implemented. We can safely remove it, because the kernel has grown
to have many more reliable mechanisms to determine if device is
supported or not.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'sound/isa/opl3sa2.c')
-rw-r--r-- | sound/isa/opl3sa2.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sound/isa/opl3sa2.c b/sound/isa/opl3sa2.c index 7649a8a4128d..9bde11d1cfe8 100644 --- a/sound/isa/opl3sa2.c +++ b/sound/isa/opl3sa2.c @@ -22,11 +22,6 @@ MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>"); MODULE_DESCRIPTION("Yamaha OPL3SA2+"); MODULE_LICENSE("GPL"); -MODULE_SUPPORTED_DEVICE("{{Yamaha,YMF719E-S}," - "{Genius,Sound Maker 3DX}," - "{Yamaha,OPL3SA3}," - "{Intel,AL440LX sound}," - "{NeoMagic,MagicWave 3DX}}"); static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ |