diff options
author | Antonio Ospite <ospite@studenti.unina.it> | 2009-07-22 16:20:50 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-08-13 19:39:01 -0400 |
commit | 5b766182a110311fbf618f736bc8a8f2f7ce3f4c (patch) | |
tree | 4afd0774da54f725c46db7de6ceb518d6de319e1 /drivers | |
parent | 3493e84de60590d3012139187f631f2dfbf0887f (diff) |
V4L/DVB (12330): pxa_camera: Fix Oops in pxa_camera_probe
mclk_get_divisor uses pcdev->soc_host.dev, make sure it is initialized.
Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/video/pxa_camera.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/pxa_camera.c b/drivers/media/video/pxa_camera.c index 46e0d8ad880f..e048d25798cc 100644 --- a/drivers/media/video/pxa_camera.c +++ b/drivers/media/video/pxa_camera.c | |||
@@ -1579,6 +1579,7 @@ static int __devinit pxa_camera_probe(struct platform_device *pdev) | |||
1579 | pcdev->mclk = 20000000; | 1579 | pcdev->mclk = 20000000; |
1580 | } | 1580 | } |
1581 | 1581 | ||
1582 | pcdev->soc_host.dev = &pdev->dev; | ||
1582 | pcdev->mclk_divisor = mclk_get_divisor(pcdev); | 1583 | pcdev->mclk_divisor = mclk_get_divisor(pcdev); |
1583 | 1584 | ||
1584 | INIT_LIST_HEAD(&pcdev->capture); | 1585 | INIT_LIST_HEAD(&pcdev->capture); |
@@ -1644,7 +1645,6 @@ static int __devinit pxa_camera_probe(struct platform_device *pdev) | |||
1644 | pcdev->soc_host.drv_name = PXA_CAM_DRV_NAME; | 1645 | pcdev->soc_host.drv_name = PXA_CAM_DRV_NAME; |
1645 | pcdev->soc_host.ops = &pxa_soc_camera_host_ops; | 1646 | pcdev->soc_host.ops = &pxa_soc_camera_host_ops; |
1646 | pcdev->soc_host.priv = pcdev; | 1647 | pcdev->soc_host.priv = pcdev; |
1647 | pcdev->soc_host.dev = &pdev->dev; | ||
1648 | pcdev->soc_host.nr = pdev->id; | 1648 | pcdev->soc_host.nr = pdev->id; |
1649 | 1649 | ||
1650 | err = soc_camera_host_register(&pcdev->soc_host); | 1650 | err = soc_camera_host_register(&pcdev->soc_host); |