From: Guennadi Liakhovetski Date: Wed, 20 Oct 2010 13:14:57 +0000 (-0300) Subject: [media] soc-camera: fix static build of the sh_mobile_csi2.c driver X-Git-Tag: v2.6.37-rc8~21^2~19 X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;ds=sidebyside;h=cd05e79f72d318d57e625825a5212e3fb90ea4a3;p=~andy%2Flinux [media] soc-camera: fix static build of the sh_mobile_csi2.c driver The test for driver->owner != NULL in sh_mobile_ceu_camera.c is unneeded and it breaks the static build of sh_mobile_csi2.c. Remove it. Signed-off-by: Guennadi Liakhovetski Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/video/sh_mobile_ceu_camera.c b/drivers/media/video/sh_mobile_ceu_camera.c index 5c209afb0ac..2486520582f 100644 --- a/drivers/media/video/sh_mobile_ceu_camera.c +++ b/drivers/media/video/sh_mobile_ceu_camera.c @@ -1980,7 +1980,7 @@ static int __devinit sh_mobile_ceu_probe(struct platform_device *pdev) * we complete the completion. */ - if (!csi2->driver || !csi2->driver->owner) { + if (!csi2->driver) { complete(&wait.completion); /* Either too late, or probing failed */ bus_unregister_notifier(&platform_bus_type, &wait.notifier);