diff mbox

NFC: use module_platform_driver macro for nfcwilink.c

Message ID 1345019650-5030-1-git-send-email-s.syam@samsung.com (mailing list archive)
State Not Applicable, archived
Headers show

Commit Message

Syam Sidhardhan Aug. 15, 2012, 8:34 a.m. UTC
Simplify the code by make use of module_platform_driver macro.

Signed-off-by: Syam Sidhardhan <s.syam@samsung.com>
---
 drivers/nfc/nfcwilink.c |   16 +---------------
 1 file changed, 1 insertion(+), 15 deletions(-)

Comments

Samuel Ortiz Aug. 17, 2012, 10:02 p.m. UTC | #1
Hi Syam,

On Wed, Aug 15, 2012 at 02:04:10PM +0530, Syam Sidhardhan wrote:
> Simplify the code by make use of module_platform_driver macro.
> 
> Signed-off-by: Syam Sidhardhan <s.syam@samsung.com>
> ---
>  drivers/nfc/nfcwilink.c |   16 +---------------
>  1 file changed, 1 insertion(+), 15 deletions(-)
Thanks, patch applied.

Cheers,
Samuel.
diff mbox

Patch

diff --git a/drivers/nfc/nfcwilink.c b/drivers/nfc/nfcwilink.c
index e7fd493..827f039 100644
--- 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 ------ */