summaryrefslogtreecommitdiffstats
path: root/drivers/staging/media/zoran
diff options
context:
space:
mode:
authorCorentin Labbe <clabbe@baylibre.com>2021-12-14 17:16:20 +0100
committerMauro Carvalho Chehab <mchehab@kernel.org>2022-01-23 21:18:38 +0100
commitb419ee9468d9d15f3b59bb5143e808d877f91197 (patch)
treeaf2a1f0cabcaf38b82f3439e75dd17a9c97da143 /drivers/staging/media/zoran
parent4d4389f64c5f32358f4b58e9e392ca10f14935aa (diff)
downloadlinux-b419ee9468d9d15f3b59bb5143e808d877f91197.tar.bz2
media: staging: media: zoran: use module_pci_driver
Simplify code by using module_pci_driver() Signed-off-by: Corentin Labbe <clabbe@baylibre.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'drivers/staging/media/zoran')
-rw-r--r--drivers/staging/media/zoran/zoran_card.c21
1 files changed, 1 insertions, 20 deletions
diff --git a/drivers/staging/media/zoran/zoran_card.c b/drivers/staging/media/zoran/zoran_card.c
index 3bc0e64f1007..f1465fbf98af 100644
--- a/drivers/staging/media/zoran/zoran_card.c
+++ b/drivers/staging/media/zoran/zoran_card.c
@@ -1314,23 +1314,4 @@ static struct pci_driver zoran_driver = {
.remove = zoran_remove,
};
-static int __init zoran_init(void)
-{
- int res;
-
- res = pci_register_driver(&zoran_driver);
- if (res) {
- pr_err("Unable to register ZR36057 driver\n");
- return res;
- }
-
- return 0;
-}
-
-static void __exit zoran_exit(void)
-{
- pci_unregister_driver(&zoran_driver);
-}
-
-module_init(zoran_init);
-module_exit(zoran_exit);
+module_pci_driver(zoran_driver);