Hi, Any comments on this patch? On 27 August 2012 15:45, Sachin Kamat <sachin.kamat@xxxxxxxxxx> wrote: > module_pci_driver makes the code simpler by eliminating > module_init and module_exit calls. > > Signed-off-by: Sachin Kamat <sachin.kamat@xxxxxxxxxx> > --- > drivers/crypto/geode-aes.c | 15 +-------------- > 1 files changed, 1 insertions(+), 14 deletions(-) > > diff --git a/drivers/crypto/geode-aes.c b/drivers/crypto/geode-aes.c > index 933fb4b4..51f196d 100644 > --- a/drivers/crypto/geode-aes.c > +++ b/drivers/crypto/geode-aes.c > @@ -585,21 +585,8 @@ static struct pci_driver geode_aes_driver = { > .remove = __devexit_p(geode_aes_remove) > }; > > -static int __init > -geode_aes_init(void) > -{ > - return pci_register_driver(&geode_aes_driver); > -} > - > -static void __exit > -geode_aes_exit(void) > -{ > - pci_unregister_driver(&geode_aes_driver); > -} > +module_pci_driver(geode_aes_driver); > > MODULE_AUTHOR("Advanced Micro Devices, Inc."); > MODULE_DESCRIPTION("Geode LX Hardware AES driver"); > MODULE_LICENSE("GPL"); > - > -module_init(geode_aes_init); > -module_exit(geode_aes_exit); > -- > 1.7.4.1 > -- With warm regards, Sachin -- To unsubscribe from this list: send the line "unsubscribe linux-crypto" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html