crypto: convert drivers/crypto/* to use module_platform_driver()
This patch converts the drivers in drivers/crypto/* to use the module_platform_driver() macro which makes the code smaller and a bit simpler. Cc: James Hsiao <jhsiao@amcc.com> Cc: Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Cc: Kim Phillips <kim.phillips@freescale.com> Cc: "David S. Miller" <davem@davemloft.net> Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: Vladimir Zapolskiy <vzapolskiy@gmail.com> Acked-by: Jamie Iles <jamie@jamieiles.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
@@ -1292,18 +1292,7 @@ static struct platform_driver crypto4xx_driver = {
|
||||
.remove = crypto4xx_remove,
|
||||
};
|
||||
|
||||
static int __init crypto4xx_init(void)
|
||||
{
|
||||
return platform_driver_register(&crypto4xx_driver);
|
||||
}
|
||||
|
||||
static void __exit crypto4xx_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&crypto4xx_driver);
|
||||
}
|
||||
|
||||
module_init(crypto4xx_init);
|
||||
module_exit(crypto4xx_exit);
|
||||
module_platform_driver(crypto4xx_driver);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_AUTHOR("James Hsiao <jhsiao@amcc.com>");
|
||||
|
Reference in New Issue
Block a user