aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/soc_camera.c
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2009-06-04 10:07:16 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-06-16 18:07:51 -0400
commite36bc31f823d6089bedc935fea82b6d36793412a (patch)
treea5c2b21ba314507ec61b00ded3ce6607c8094c86 /drivers/media/video/soc_camera.c
parent96ceea2734d922d07000e98606231f3d675e09f8 (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/soc_camera.c')
-rw-r--r--drivers/media/video/soc_camera.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/soc_camera.c b/drivers/media/video/soc_camera.c
index 2014e9e32b35..16f595d4337a 100644
--- a/drivers/media/video/soc_camera.c
+++ b/drivers/media/video/soc_camera.c
@@ -1205,7 +1205,7 @@ static int __devexit soc_camera_pdrv_remove(struct platform_device *pdev)
1205 1205
1206static struct platform_driver __refdata soc_camera_pdrv = { 1206static struct platform_driver __refdata soc_camera_pdrv = {
1207 .probe = soc_camera_pdrv_probe, 1207 .probe = soc_camera_pdrv_probe,
1208 .remove = __exit_p(soc_camera_pdrv_remove), 1208 .remove = __devexit_p(soc_camera_pdrv_remove),
1209 .driver = { 1209 .driver = {
1210 .name = "soc-camera-pdrv", 1210 .name = "soc-camera-pdrv",
1211 .owner = THIS_MODULE, 1211 .owner = THIS_MODULE,