projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
767f19a
)
NFC: Use module_platform_driver macro for nfcwilink.c
author
Syam Sidhardhan
<
[email protected]
>
Wed, 15 Aug 2012 08:34:10 +0000
(14:04 +0530)
committer
Samuel Ortiz
<
[email protected]
>
Mon, 24 Sep 2012 22:17:23 +0000
(
00:17
+0200)
Simplify the code by make use of module_platform_driver macro.
Signed-off-by: Syam Sidhardhan <
[email protected]
>
Signed-off-by: Samuel Ortiz <
[email protected]
>
drivers/nfc/nfcwilink.c
patch
|
blob
|
history
diff --git
a/drivers/nfc/nfcwilink.c
b/drivers/nfc/nfcwilink.c
index e7fd4938f9bc2e36191de06f38fa30fd807eb307..827f039ceaf5465b3700bd9fdc0cc31f564bea07 100644
(file)
--- a/
drivers/nfc/nfcwilink.c
+++ b/
drivers/nfc/nfcwilink.c
@@
-604,21
+604,7
@@
static struct platform_driver nfcwilink_driver = {
},
};
-/* ------- Module Init/Exit interfaces ------ */
-static int __init nfcwilink_init(void)
-{
- printk(KERN_INFO "NFC Driver for TI WiLink");
-
- return platform_driver_register(&nfcwilink_driver);
-}
-
-static void __exit nfcwilink_exit(void)
-{
- platform_driver_unregister(&nfcwilink_driver);
-}
-
-module_init(nfcwilink_init);
-module_exit(nfcwilink_exit);
+module_platform_driver(nfcwilink_driver);
/* ------ Module Info ------ */