diff options
author | Jean Delvare <khali@linux-fr.org> | 2009-06-04 10:07:16 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-16 18:07:51 -0400 |
commit | e36bc31f823d6089bedc935fea82b6d36793412a (patch) | |
tree | a5c2b21ba314507ec61b00ded3ce6607c8094c86 /drivers/media/video/zoran | |
parent | 96ceea2734d922d07000e98606231f3d675e09f8 (diff) |
V4L/DVB (11992): Add missing __devexit_p()
Add missing __devexit_p() to several drivers. Also add a few missing
__init, __devinit and __exit markers. These errors could result in
build failures depending on the kernel configuration.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/zoran')
-rw-r--r-- | drivers/media/video/zoran/zoran_card.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/zoran/zoran_card.c b/drivers/media/video/zoran/zoran_card.c index ea9de8b47db3..03dc2f3cf84a 100644 --- a/drivers/media/video/zoran/zoran_card.c +++ b/drivers/media/video/zoran/zoran_card.c | |||
@@ -1477,7 +1477,7 @@ static struct pci_driver zoran_driver = { | |||
1477 | .name = "zr36067", | 1477 | .name = "zr36067", |
1478 | .id_table = zr36067_pci_tbl, | 1478 | .id_table = zr36067_pci_tbl, |
1479 | .probe = zoran_probe, | 1479 | .probe = zoran_probe, |
1480 | .remove = zoran_remove, | 1480 | .remove = __devexit_p(zoran_remove), |
1481 | }; | 1481 | }; |
1482 | 1482 | ||
1483 | static int __init zoran_init(void) | 1483 | static int __init zoran_init(void) |