aboutsummaryrefslogtreecommitdiffstats
path: root/sound/oss
diff options
context:
space:
mode:
authorChristoph Jaeger <christophjaeger@linux.com>2014-04-09 09:43:53 +0200
committerTakashi Iwai <tiwai@suse.de>2014-04-09 10:02:21 +0200
commit292ab81df0e9e1444fd027e1f45336eb0ce4e23d (patch)
tree151d2a828d0ce877b8ac3b5c222d38bc719c85fb /sound/oss
parentALSA: au1x00: use module_platform_driver() (diff)
downloadlinux-dev-292ab81df0e9e1444fd027e1f45336eb0ce4e23d.tar.xz
linux-dev-292ab81df0e9e1444fd027e1f45336eb0ce4e23d.zip
sound: dmasound: use module_platform_driver_probe()
Eliminate boilerplate code by using module_platform_driver_probe(). Signed-off-by: Christoph Jaeger <christophjaeger@linux.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/oss')
-rw-r--r--sound/oss/dmasound/dmasound_paula.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/sound/oss/dmasound/dmasound_paula.c b/sound/oss/dmasound/dmasound_paula.c
index 87910e992133..c2d45a5848bc 100644
--- a/sound/oss/dmasound/dmasound_paula.c
+++ b/sound/oss/dmasound/dmasound_paula.c
@@ -733,19 +733,7 @@ static struct platform_driver amiga_audio_driver = {
},
};
-static int __init amiga_audio_init(void)
-{
- return platform_driver_probe(&amiga_audio_driver, amiga_audio_probe);
-}
-
-module_init(amiga_audio_init);
-
-static void __exit amiga_audio_exit(void)
-{
- platform_driver_unregister(&amiga_audio_driver);
-}
-
-module_exit(amiga_audio_exit);
+module_platform_driver_probe(amiga_audio_driver, amiga_audio_probe);
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:amiga-audio");