mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
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:
parent
b21cb324f1
commit
741e8c2d81
@ -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>");
|
||||
|
@ -253,18 +253,7 @@ static struct platform_driver caam_driver = {
|
||||
.remove = __devexit_p(caam_remove),
|
||||
};
|
||||
|
||||
static int __init caam_base_init(void)
|
||||
{
|
||||
return platform_driver_register(&caam_driver);
|
||||
}
|
||||
|
||||
static void __exit caam_base_exit(void)
|
||||
{
|
||||
return platform_driver_unregister(&caam_driver);
|
||||
}
|
||||
|
||||
module_init(caam_base_init);
|
||||
module_exit(caam_base_exit);
|
||||
module_platform_driver(caam_driver);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_DESCRIPTION("FSL CAAM request backend");
|
||||
|
@ -1126,17 +1126,7 @@ static struct platform_driver marvell_crypto = {
|
||||
};
|
||||
MODULE_ALIAS("platform:mv_crypto");
|
||||
|
||||
static int __init mv_crypto_init(void)
|
||||
{
|
||||
return platform_driver_register(&marvell_crypto);
|
||||
}
|
||||
module_init(mv_crypto_init);
|
||||
|
||||
static void __exit mv_crypto_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&marvell_crypto);
|
||||
}
|
||||
module_exit(mv_crypto_exit);
|
||||
module_platform_driver(marvell_crypto);
|
||||
|
||||
MODULE_AUTHOR("Sebastian Andrzej Siewior <sebastian@breakpoint.cc>");
|
||||
MODULE_DESCRIPTION("Support for Marvell's cryptographic engine");
|
||||
|
@ -1854,17 +1854,7 @@ static struct platform_driver spacc_driver = {
|
||||
.id_table = spacc_id_table,
|
||||
};
|
||||
|
||||
static int __init spacc_init(void)
|
||||
{
|
||||
return platform_driver_register(&spacc_driver);
|
||||
}
|
||||
module_init(spacc_init);
|
||||
|
||||
static void __exit spacc_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&spacc_driver);
|
||||
}
|
||||
module_exit(spacc_exit);
|
||||
module_platform_driver(spacc_driver);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_AUTHOR("Jamie Iles");
|
||||
|
@ -683,18 +683,7 @@ static struct platform_driver s5p_aes_crypto = {
|
||||
},
|
||||
};
|
||||
|
||||
static int __init s5p_aes_mod_init(void)
|
||||
{
|
||||
return platform_driver_register(&s5p_aes_crypto);
|
||||
}
|
||||
|
||||
static void __exit s5p_aes_mod_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&s5p_aes_crypto);
|
||||
}
|
||||
|
||||
module_init(s5p_aes_mod_init);
|
||||
module_exit(s5p_aes_mod_exit);
|
||||
module_platform_driver(s5p_aes_crypto);
|
||||
|
||||
MODULE_DESCRIPTION("S5PV210 AES hw acceleration support.");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -2894,17 +2894,7 @@ static struct platform_driver talitos_driver = {
|
||||
.remove = talitos_remove,
|
||||
};
|
||||
|
||||
static int __init talitos_init(void)
|
||||
{
|
||||
return platform_driver_register(&talitos_driver);
|
||||
}
|
||||
module_init(talitos_init);
|
||||
|
||||
static void __exit talitos_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&talitos_driver);
|
||||
}
|
||||
module_exit(talitos_exit);
|
||||
module_platform_driver(talitos_driver);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_AUTHOR("Kim Phillips <kim.phillips@freescale.com>");
|
||||
|
Loading…
Reference in New Issue
Block a user