Commit e7be28cb authored by Libo Chen's avatar Libo Chen Committed by Mauro Carvalho Chehab

[media] drivers/media/pci/pt1/pt1: Convert to module_pci_driver

use module_pci_driver instead of init/exit, make code clean.
Signed-off-by: default avatarLibo Chen <libo.chen@huawei.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 5077ac3b
...@@ -1225,20 +1225,7 @@ static struct pci_driver pt1_driver = { ...@@ -1225,20 +1225,7 @@ static struct pci_driver pt1_driver = {
.id_table = pt1_id_table, .id_table = pt1_id_table,
}; };
module_pci_driver(pt1_driver);
static int __init pt1_init(void)
{
return pci_register_driver(&pt1_driver);
}
static void __exit pt1_cleanup(void)
{
pci_unregister_driver(&pt1_driver);
}
module_init(pt1_init);
module_exit(pt1_cleanup);
MODULE_AUTHOR("Takahito HIRANO <hiranotaka@zng.info>"); MODULE_AUTHOR("Takahito HIRANO <hiranotaka@zng.info>");
MODULE_DESCRIPTION("Earthsoft PT1/PT2 Driver"); MODULE_DESCRIPTION("Earthsoft PT1/PT2 Driver");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment