Commit d67a1ada authored by Hans de Goede's avatar Hans de Goede Committed by Mauro Carvalho Chehab

[media] gscpa_stv06xx: Make sd_desc const

Now that stv06xx is using the control framework it is no longer necessary
to have a (non const) copy of sd_desc inside the sd specific data struct.
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent dec9c514
...@@ -542,9 +542,8 @@ static int stv06xx_config(struct gspca_dev *gspca_dev, ...@@ -542,9 +542,8 @@ static int stv06xx_config(struct gspca_dev *gspca_dev,
PDEBUG(D_PROBE, "Configuring camera"); PDEBUG(D_PROBE, "Configuring camera");
sd->desc = sd_desc;
sd->bridge = id->driver_info; sd->bridge = id->driver_info;
gspca_dev->sd_desc = &sd->desc; gspca_dev->sd_desc = &sd_desc;
if (dump_bridge) if (dump_bridge)
stv06xx_dump_bridge(sd); stv06xx_dump_bridge(sd);
......
...@@ -92,9 +92,6 @@ struct sd { ...@@ -92,9 +92,6 @@ struct sd {
/* Control handler */ /* Control handler */
struct v4l2_ctrl_handler ctrl_handler; struct v4l2_ctrl_handler ctrl_handler;
/* A pointer to the sd_desc struct */
struct sd_desc desc;
/* Sensor private data */ /* Sensor private data */
void *sensor_priv; void *sensor_priv;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment