[media] drivers/media/pci/pluto2/pluto2: Convert to module_pci_driver
use module_pci_driver instead of init/exit, make code clean. Signed-off-by: Libo Chen <libo.chen@huawei.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
548006ce97
commit
6eb2fb3170
|
@ -796,18 +796,7 @@ static struct pci_driver pluto2_driver = {
|
|||
.remove = pluto2_remove,
|
||||
};
|
||||
|
||||
static int __init pluto2_init(void)
|
||||
{
|
||||
return pci_register_driver(&pluto2_driver);
|
||||
}
|
||||
|
||||
static void __exit pluto2_exit(void)
|
||||
{
|
||||
pci_unregister_driver(&pluto2_driver);
|
||||
}
|
||||
|
||||
module_init(pluto2_init);
|
||||
module_exit(pluto2_exit);
|
||||
module_pci_driver(pluto2_driver);
|
||||
|
||||
MODULE_AUTHOR("Andreas Oberritter <obi@linuxtv.org>");
|
||||
MODULE_DESCRIPTION("Pluto2 driver");
|
||||
|
|
Loading…
Reference in New Issue