diff options
author | Syam Sidhardhan <syamsidhardh@gmail.com> | 2012-08-15 04:34:10 -0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-09-24 18:17:23 -0400 |
commit | 058576ddfb31762bfce70086a3c12678a97c4d75 (patch) | |
tree | cbd9a9357f40656ef0b14ef919268790e7c67406 /drivers/nfc/nfcwilink.c | |
parent | 767f19ae698e535f308663c48245fa951abebe20 (diff) |
NFC: Use module_platform_driver macro for nfcwilink.c
Simplify the code by make use of module_platform_driver macro.
Signed-off-by: Syam Sidhardhan <s.syam@samsung.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/nfc/nfcwilink.c')
-rw-r--r-- | drivers/nfc/nfcwilink.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/drivers/nfc/nfcwilink.c b/drivers/nfc/nfcwilink.c index e7fd4938f9bc..827f039ceaf5 100644 --- a/drivers/nfc/nfcwilink.c +++ b/drivers/nfc/nfcwilink.c | |||
@@ -604,21 +604,7 @@ static struct platform_driver nfcwilink_driver = { | |||
604 | }, | 604 | }, |
605 | }; | 605 | }; |
606 | 606 | ||
607 | /* ------- Module Init/Exit interfaces ------ */ | 607 | module_platform_driver(nfcwilink_driver); |
608 | static int __init nfcwilink_init(void) | ||
609 | { | ||
610 | printk(KERN_INFO "NFC Driver for TI WiLink"); | ||
611 | |||
612 | return platform_driver_register(&nfcwilink_driver); | ||
613 | } | ||
614 | |||
615 | static void __exit nfcwilink_exit(void) | ||
616 | { | ||
617 | platform_driver_unregister(&nfcwilink_driver); | ||
618 | } | ||
619 | |||
620 | module_init(nfcwilink_init); | ||
621 | module_exit(nfcwilink_exit); | ||
622 | 608 | ||
623 | /* ------ Module Info ------ */ | 609 | /* ------ Module Info ------ */ |
624 | 610 | ||