aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/htc-pasic3.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-03-04 23:47:59 -0500
committerSamuel Ortiz <sameo@linux.intel.com>2013-04-05 12:08:45 -0400
commite8fe6a827939cf723a3871ff455f6346337c649a (patch)
treec4cad589074bc1ed8c92c2767f36b59fb0cf0f8f /drivers/mfd/htc-pasic3.c
parentbbc48c6aaab9cff03e6e966bf752c3b7ad91d16a (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.c13
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
211static int __init pasic3_base_init(void) 211module_platform_driver_probe(pasic3_driver, pasic3_probe);
212{
213 return platform_driver_probe(&pasic3_driver, pasic3_probe);
214}
215
216static void __exit pasic3_base_exit(void)
217{
218 platform_driver_unregister(&pasic3_driver);
219}
220
221module_init(pasic3_base_init);
222module_exit(pasic3_base_exit);
223 212
224MODULE_AUTHOR("Philipp Zabel <philipp.zabel@gmail.com>"); 213MODULE_AUTHOR("Philipp Zabel <philipp.zabel@gmail.com>");
225MODULE_DESCRIPTION("Core driver for HTC PASIC3"); 214MODULE_DESCRIPTION("Core driver for HTC PASIC3");