Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

[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
Loading
Loading
Loading
Loading
+1 −14
Original line number Diff line number Diff line
@@ -1225,20 +1225,7 @@ static struct pci_driver pt1_driver = {
	.id_table	= pt1_id_table,
};


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_pci_driver(pt1_driver);

MODULE_AUTHOR("Takahito HIRANO <hiranotaka@zng.info>");
MODULE_DESCRIPTION("Earthsoft PT1/PT2 Driver");