diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-11-25 03:15:07 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-25 14:15:29 +0100 |
commit | cb5e87387cfa8172faca36682e2df069b006efdf (patch) | |
tree | 2d547197742fda15a5a3f7e746a470518059eb32 /sound/soc/sh/fsi-ak4642.c | |
parent | ASoC: Convert pxa directory to module_platform_driver (diff) | |
download | linux-cb5e87387cfa8172faca36682e2df069b006efdf.tar.xz linux-cb5e87387cfa8172faca36682e2df069b006efdf.zip |
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-ak4642.c')
-rw-r--r-- | sound/soc/sh/fsi-ak4642.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/sound/soc/sh/fsi-ak4642.c b/sound/soc/sh/fsi-ak4642.c index 11d2d7ff29d9..eb52778d0f90 100644 --- a/sound/soc/sh/fsi-ak4642.c +++ b/sound/soc/sh/fsi-ak4642.c @@ -100,18 +100,7 @@ static struct platform_driver fsi_ak4642 = { .remove = fsi_ak4642_remove, }; -static int __init fsi_ak4642_init(void) -{ - return platform_driver_register(&fsi_ak4642); -} - -static void __exit fsi_ak4642_exit(void) -{ - platform_driver_unregister(&fsi_ak4642); -} - -module_init(fsi_ak4642_init); -module_exit(fsi_ak4642_exit); +module_platform_driver(fsi_ak4642); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Generic SH4 FSI-AK4642 sound card"); |