[alsa-devel] [PATCH 1/2] ASoC: Convert smdk_wm8994pcm to use module_platform_driver()
Axel Lin
axel.lin at gmail.com
Mon Nov 28 11:53:57 CET 2011
Use the module_platform_driver() macro which makes
the code smaller and a bit simpler.
Signed-off-by: Axel Lin <axel.lin at gmail.com>
---
sound/soc/samsung/smdk_wm8994pcm.c | 14 +-------------
1 files changed, 1 insertions(+), 13 deletions(-)
diff --git a/sound/soc/samsung/smdk_wm8994pcm.c b/sound/soc/samsung/smdk_wm8994pcm.c
index da9c2a2..23c7fb7 100644
--- a/sound/soc/samsung/smdk_wm8994pcm.c
+++ b/sound/soc/samsung/smdk_wm8994pcm.c
@@ -158,19 +158,7 @@ static struct platform_driver snd_smdk_driver = {
.remove = __devexit_p(snd_smdk_remove),
};
-static int __init smdk_audio_init(void)
-{
- return platform_driver_register(&snd_smdk_driver);
-}
-
-module_init(smdk_audio_init);
-
-static void __exit smdk_audio_exit(void)
-{
- platform_driver_unregister(&snd_smdk_driver);
-}
-
-module_exit(smdk_audio_exit);
+module_platform_driver(snd_smdk_driver);
MODULE_AUTHOR("Sangbeom Kim, <sbkim73 at samsung.com>");
MODULE_DESCRIPTION("ALSA SoC SMDK WM8994 for PCM");
--
1.7.5.4
More information about the Alsa-devel
mailing list