diff options
author | Leon Romanovsky <leonro@nvidia.com> | 2021-03-17 12:45:47 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2021-03-17 13:16:18 -0700 |
commit | 6417f03132a6952cd17ddd8eaddbac92b61b17e0 (patch) | |
tree | 21acfe9dc0b62cca8c29e1c216aea6bdb0492f4f /sound/pci/sonicvibes.c | |
parent | e69beeabac6dae8d4318f46c7aa0c70b9599afb1 (diff) | |
download | linux-6417f03132a6952cd17ddd8eaddbac92b61b17e0.tar.gz linux-6417f03132a6952cd17ddd8eaddbac92b61b17e0.tar.bz2 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/pci/sonicvibes.c')
-rw-r--r-- | sound/pci/sonicvibes.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/pci/sonicvibes.c b/sound/pci/sonicvibes.c index 26fd1d08c179..7de10997775f 100644 --- a/sound/pci/sonicvibes.c +++ b/sound/pci/sonicvibes.c @@ -29,7 +29,6 @@ MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>"); MODULE_DESCRIPTION("S3 SonicVibes PCI"); MODULE_LICENSE("GPL"); -MODULE_SUPPORTED_DEVICE("{{S3,SonicVibes PCI}}"); #if IS_REACHABLE(CONFIG_GAMEPORT) #define SUPPORT_JOYSTICK 1 |