mmc: cavium: Use module_pci_driver to simplify the code

Use the module_pci_driver() macro to make the code simpler
by eliminating module_init and module_exit calls.

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Jan Glauber <jglauber@cavium.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
Wei Yongjun 2017-04-25 03:14:09 +00:00 коммит произвёл Ulf Hansson
Родитель 01d9584333
Коммит dfc28b110d
1 изменённых файлов: 1 добавлений и 12 удалений

Просмотреть файл

@ -179,18 +179,7 @@ static struct pci_driver thunder_mmc_driver = {
.remove = thunder_mmc_remove,
};
static int __init thunder_mmc_init_module(void)
{
return pci_register_driver(&thunder_mmc_driver);
}
static void __exit thunder_mmc_exit_module(void)
{
pci_unregister_driver(&thunder_mmc_driver);
}
module_init(thunder_mmc_init_module);
module_exit(thunder_mmc_exit_module);
module_pci_driver(thunder_mmc_driver);
MODULE_AUTHOR("Cavium Inc.");
MODULE_DESCRIPTION("Cavium ThunderX eMMC Driver");