diff options
| author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2010-10-20 09:14:57 -0400 |
|---|---|---|
| committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-20 11:10:57 -0500 |
| commit | cd05e79f72d318d57e625825a5212e3fb90ea4a3 (patch) | |
| tree | f191688e570b91383410a52747132d47ef7ebe14 | |
| parent | 42cc37fe20cc680fb58fe12ae5ba718d683b8ca2 (diff) | |
[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 <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
| -rw-r--r-- | drivers/media/video/sh_mobile_ceu_camera.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/sh_mobile_ceu_camera.c b/drivers/media/video/sh_mobile_ceu_camera.c index 5c209afb0ac8..2486520582f2 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) | |||
| 1980 | * we complete the completion. | 1980 | * we complete the completion. |
| 1981 | */ | 1981 | */ |
| 1982 | 1982 | ||
| 1983 | if (!csi2->driver || !csi2->driver->owner) { | 1983 | if (!csi2->driver) { |
| 1984 | complete(&wait.completion); | 1984 | complete(&wait.completion); |
| 1985 | /* Either too late, or probing failed */ | 1985 | /* Either too late, or probing failed */ |
| 1986 | bus_unregister_notifier(&platform_bus_type, &wait.notifier); | 1986 | bus_unregister_notifier(&platform_bus_type, &wait.notifier); |
