diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-03-04 23:47:59 -0500 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2013-04-05 12:08:45 -0400 |
commit | e8fe6a827939cf723a3871ff455f6346337c649a (patch) | |
tree | c4cad589074bc1ed8c92c2767f36b59fb0cf0f8f /drivers/mfd/htc-pasic3.c | |
parent | bbc48c6aaab9cff03e6e966bf752c3b7ad91d16a (diff) |
mfd: htc-pasic3: use module_platform_driver_probe()
This patch uses module_platform_driver_probe() macro which makes
the code smaller and simpler.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/htc-pasic3.c')
-rw-r--r-- | drivers/mfd/htc-pasic3.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/mfd/htc-pasic3.c b/drivers/mfd/htc-pasic3.c index 9e5453d21a68..0285fceb99a6 100644 --- a/drivers/mfd/htc-pasic3.c +++ b/drivers/mfd/htc-pasic3.c | |||
@@ -208,18 +208,7 @@ static struct platform_driver pasic3_driver = { | |||
208 | .remove = pasic3_remove, | 208 | .remove = pasic3_remove, |
209 | }; | 209 | }; |
210 | 210 | ||
211 | static int __init pasic3_base_init(void) | 211 | module_platform_driver_probe(pasic3_driver, pasic3_probe); |
212 | { | ||
213 | return platform_driver_probe(&pasic3_driver, pasic3_probe); | ||
214 | } | ||
215 | |||
216 | static void __exit pasic3_base_exit(void) | ||
217 | { | ||
218 | platform_driver_unregister(&pasic3_driver); | ||
219 | } | ||
220 | |||
221 | module_init(pasic3_base_init); | ||
222 | module_exit(pasic3_base_exit); | ||
223 | 212 | ||
224 | MODULE_AUTHOR("Philipp Zabel <philipp.zabel@gmail.com>"); | 213 | MODULE_AUTHOR("Philipp Zabel <philipp.zabel@gmail.com>"); |
225 | MODULE_DESCRIPTION("Core driver for HTC PASIC3"); | 214 | MODULE_DESCRIPTION("Core driver for HTC PASIC3"); |