summaryrefslogtreecommitdiffstats
path: root/sound/core/compress_offload.c
diff options
context:
space:
mode:
authorTakashi Iwai2018-08-03 15:40:25 +0200
committerTakashi Iwai2018-08-03 16:11:23 +0200
commita6403299893982a2c0b0a6f43261976c43e1598e (patch)
treefbc708779aad5d3ae2ff6fe4bdf3e1ba3d514df5 /sound/core/compress_offload.c
parentALSA: gus: fix spelling mistake "acumulator" -> "accumulator" (diff)
downloadkernel-qcow2-linux-a6403299893982a2c0b0a6f43261976c43e1598e.tar.gz
kernel-qcow2-linux-a6403299893982a2c0b0a6f43261976c43e1598e.tar.xz
kernel-qcow2-linux-a6403299893982a2c0b0a6f43261976c43e1598e.zip
ALSA: compress: Remove empty init and exit
For a sake of code simplification, remove the init and the exit entries that do nothing. Notes for readers: actually it's OK to remove *both* init and exit, but not OK to remove the exit entry. By removing only the exit while keeping init, the module becomes permanently loaded; i.e. you cannot unload it any longer! Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/compress_offload.c')
-rw-r--r--sound/core/compress_offload.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/sound/core/compress_offload.c b/sound/core/compress_offload.c
index 4b01a37c836e..26b5e245b074 100644
--- a/sound/core/compress_offload.c
+++ b/sound/core/compress_offload.c
@@ -1160,18 +1160,6 @@ int snd_compress_deregister(struct snd_compr *device)
}
EXPORT_SYMBOL_GPL(snd_compress_deregister);
-static int __init snd_compress_init(void)
-{
- return 0;
-}
-
-static void __exit snd_compress_exit(void)
-{
-}
-
-module_init(snd_compress_init);
-module_exit(snd_compress_exit);
-
MODULE_DESCRIPTION("ALSA Compressed offload framework");
MODULE_AUTHOR("Vinod Koul <vinod.koul@linux.intel.com>");
MODULE_LICENSE("GPL v2");