diff options
author | Peter Huewe <peterhuewe@gmx.de> | 2009-11-04 13:28:33 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-12-05 15:41:12 -0500 |
commit | 9710e7a77a0a0564a393250d86b8cb3d560bb69f (patch) | |
tree | 8b7f35fde98a82e53fda01d3313f832bf947529d /drivers/media/video/cx23885/cx23885-core.c | |
parent | 0b66cf90371dcd28c6eb98904adb694ae98eb20f (diff) |
V4L/DVB (13288): adding __init/__exit macros to various drivers
Trivial patch which adds the __init/__exit macros to the module_init/
module_exit functions of the following drivers in media video:
drivers/media/video/ivtv/ivtv-driver.c
drivers/media/video/cx18/cx18-driver.c
drivers/media/video/davinci/dm355_ccdc.c
drivers/media/video/davinci/dm644x_ccdc.c
drivers/media/video/saa7164/saa7164-core.c
drivers/media/video/saa7134/saa7134-core.c
drivers/media/video/cx23885/cx23885-core.c
Cc: Hermann Pitton <hermann-pitton@arcor.de>
Acked-by: Steven Toth <stoth@kernellabs.com>
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Acked-by: Andy Walls <awalls@radix.net>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Muralidharan Karicheri <m-karicheri2@ti.com>
Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx23885/cx23885-core.c')
-rw-r--r-- | drivers/media/video/cx23885/cx23885-core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/cx23885/cx23885-core.c b/drivers/media/video/cx23885/cx23885-core.c index e34a4ec4a2cd..e8eb4ec0c30a 100644 --- a/drivers/media/video/cx23885/cx23885-core.c +++ b/drivers/media/video/cx23885/cx23885-core.c | |||
@@ -2026,7 +2026,7 @@ static struct pci_driver cx23885_pci_driver = { | |||
2026 | .resume = NULL, | 2026 | .resume = NULL, |
2027 | }; | 2027 | }; |
2028 | 2028 | ||
2029 | static int cx23885_init(void) | 2029 | static int __init cx23885_init(void) |
2030 | { | 2030 | { |
2031 | printk(KERN_INFO "cx23885 driver version %d.%d.%d loaded\n", | 2031 | printk(KERN_INFO "cx23885 driver version %d.%d.%d loaded\n", |
2032 | (CX23885_VERSION_CODE >> 16) & 0xff, | 2032 | (CX23885_VERSION_CODE >> 16) & 0xff, |
@@ -2039,7 +2039,7 @@ static int cx23885_init(void) | |||
2039 | return pci_register_driver(&cx23885_pci_driver); | 2039 | return pci_register_driver(&cx23885_pci_driver); |
2040 | } | 2040 | } |
2041 | 2041 | ||
2042 | static void cx23885_fini(void) | 2042 | static void __exit cx23885_fini(void) |
2043 | { | 2043 | { |
2044 | pci_unregister_driver(&cx23885_pci_driver); | 2044 | pci_unregister_driver(&cx23885_pci_driver); |
2045 | } | 2045 | } |