mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
V4L/DVB (11324): ov772x: wrong pointer for soc_camera_link is modified
priv->client->dev.platrom_data mean ov772x_camera_info in ov772x driver. So, struct soc_camera_link doesn't exist there. This patch modify this bug. Signed-off-by: Kuninori Morimoto <morimoto.kuninori@renesas.com> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
ae7410e712
commit
6cb2c0009e
1 changed files with 1 additions and 1 deletions
|
@ -670,7 +670,7 @@ static int ov772x_set_bus_param(struct soc_camera_device *icd,
|
|||
static unsigned long ov772x_query_bus_param(struct soc_camera_device *icd)
|
||||
{
|
||||
struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
|
||||
struct soc_camera_link *icl = priv->client->dev.platform_data;
|
||||
struct soc_camera_link *icl = &priv->info->link;
|
||||
unsigned long flags = SOCAM_PCLK_SAMPLE_RISING | SOCAM_MASTER |
|
||||
SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_HSYNC_ACTIVE_HIGH |
|
||||
SOCAM_DATA_ACTIVE_HIGH | priv->info->buswidth;
|
||||
|
|
Loading…
Reference in a new issue