diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-11-25 10:15:07 +0800 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-25 13:15:29 +0000 |
commit | cb5e87387cfa8172faca36682e2df069b006efdf (patch) | |
tree | 2d547197742fda15a5a3f7e746a470518059eb32 /sound/soc/sh/fsi.c | |
parent | 2f702a19154ddbd294825c0588593e1eef10b1e2 (diff) |
ASoC: Convert sh directory to module_platform_driver
Factor out some boilerplate code.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/sh/fsi.c')
-rw-r--r-- | sound/soc/sh/fsi.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c index aa3033075a0d..a27c30636b82 100644 --- a/sound/soc/sh/fsi.c +++ b/sound/soc/sh/fsi.c @@ -1468,18 +1468,7 @@ static struct platform_driver fsi_driver = { .id_table = fsi_id_table, }; -static int __init fsi_mobile_init(void) -{ - return platform_driver_register(&fsi_driver); -} - -static void __exit fsi_mobile_exit(void) -{ - platform_driver_unregister(&fsi_driver); -} - -module_init(fsi_mobile_init); -module_exit(fsi_mobile_exit); +module_platform_driver(fsi_driver); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("SuperH onchip FSI audio driver"); |