net/irda: convert drivers/net/irda/* to use module_platform_driver()
This patch converts the drivers in drivers/net/irda/* to use the module_platform_driver() macro which makes the code smaller and a bit simpler. Cc: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
8cd6d6162d
commit
8b7ff20001
@@ -966,18 +966,7 @@ static struct platform_driver pxa_ir_driver = {
|
||||
.resume = pxa_irda_resume,
|
||||
};
|
||||
|
||||
static int __init pxa_irda_init(void)
|
||||
{
|
||||
return platform_driver_register(&pxa_ir_driver);
|
||||
}
|
||||
|
||||
static void __exit pxa_irda_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&pxa_ir_driver);
|
||||
}
|
||||
|
||||
module_init(pxa_irda_init);
|
||||
module_exit(pxa_irda_exit);
|
||||
module_platform_driver(pxa_ir_driver);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_ALIAS("platform:pxa2xx-ir");
|
||||
|
Reference in New Issue
Block a user