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

Commit 06333e0a authored by Sachin Kamat's avatar Sachin Kamat Committed by Mauro Carvalho Chehab
Browse files

[media] pci: cx88-video: Use module_pci_driver



module_pci_driver removes some boilerplate and makes code simpler.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 38b25adc
Loading
Loading
Loading
Loading
+1 −14
Original line number Diff line number Diff line
@@ -2039,17 +2039,4 @@ static struct pci_driver cx8800_pci_driver = {
#endif
};

static int __init cx8800_init(void)
{
	printk(KERN_INFO "cx88/0: cx2388x v4l2 driver version %s loaded\n",
	       CX88_VERSION);
	return pci_register_driver(&cx8800_pci_driver);
}

static void __exit cx8800_fini(void)
{
	pci_unregister_driver(&cx8800_pci_driver);
}

module_init(cx8800_init);
module_exit(cx8800_fini);
module_pci_driver(cx8800_pci_driver);