Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 283300
b: refs/heads/master
c: 741e8c2
h: refs/heads/master
v: v3
  • Loading branch information
Axel Lin authored and Herbert Xu committed Nov 30, 2011
1 parent dd75a5d commit dd248b6
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 70 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b21cb324f141d16833137ef0355f686efb9bd84f
refs/heads/master: 741e8c2d8177eca656bc015ef83ab84d817edf8c
13 changes: 1 addition & 12 deletions trunk/drivers/crypto/amcc/crypto4xx_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>");
Expand Down
13 changes: 1 addition & 12 deletions trunk/drivers/crypto/caam/ctrl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
12 changes: 1 addition & 11 deletions trunk/drivers/crypto/mv_cesa.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
12 changes: 1 addition & 11 deletions trunk/drivers/crypto/picoxcell_crypto.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
13 changes: 1 addition & 12 deletions trunk/drivers/crypto/s5p-sss.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
12 changes: 1 addition & 11 deletions trunk/drivers/crypto/talitos.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>");
Expand Down

0 comments on commit dd248b6

Please sign in to comment.