Skip to content

Commit

Permalink
NFC: Use module_platform_driver macro for nfcwilink.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Syam Sidhardhan authored and Samuel Ortiz committed Sep 24, 2012
1 parent 767f19a commit 058576d
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions drivers/nfc/nfcwilink.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 ------ */

Expand Down

0 comments on commit 058576d

Please sign in to comment.