diff options
author | Lad, Prabhakar <prabhakar.csengg@gmail.com> | 2013-06-15 11:34:10 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-06-21 10:30:17 -0400 |
commit | 8fc350abc64f26f84c7f6af40e535edb754f942d (patch) | |
tree | 05a39736ac75f5004380a642692ebbe94747998f | |
parent | d9ec089ef248064ec9b3d027ed707ac6e0a3f2aa (diff) |
[media] media: i2c: ths7303: remove unused member driver_data
This patch removes the driver_data member from ths7303_state structure.
The driver_data member was intended to differentiate between ths7303 and
ths7353 chip and get the g_chip_ident, But as of now g_chip_ident is
obsolete, so there is no need of driver_data.
Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/i2c/ths7303.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/media/i2c/ths7303.c b/drivers/media/i2c/ths7303.c index 2e17abc77310..0a2dacbd7a63 100644 --- a/drivers/media/i2c/ths7303.c +++ b/drivers/media/i2c/ths7303.c | |||
@@ -38,7 +38,6 @@ struct ths7303_state { | |||
38 | struct v4l2_bt_timings bt; | 38 | struct v4l2_bt_timings bt; |
39 | int std_id; | 39 | int std_id; |
40 | int stream_on; | 40 | int stream_on; |
41 | int driver_data; | ||
42 | }; | 41 | }; |
43 | 42 | ||
44 | enum ths7303_filter_mode { | 43 | enum ths7303_filter_mode { |
@@ -355,9 +354,6 @@ static int ths7303_probe(struct i2c_client *client, | |||
355 | sd = &state->sd; | 354 | sd = &state->sd; |
356 | v4l2_i2c_subdev_init(sd, client, &ths7303_ops); | 355 | v4l2_i2c_subdev_init(sd, client, &ths7303_ops); |
357 | 356 | ||
358 | /* store the driver data to differntiate the chip */ | ||
359 | state->driver_data = (int)id->driver_data; | ||
360 | |||
361 | /* set to default 480I_576I filter mode */ | 357 | /* set to default 480I_576I filter mode */ |
362 | if (ths7303_setval(sd, THS7303_FILTER_MODE_480I_576I) < 0) { | 358 | if (ths7303_setval(sd, THS7303_FILTER_MODE_480I_576I) < 0) { |
363 | v4l_err(client, "Setting to 480I_576I filter mode failed!\n"); | 359 | v4l_err(client, "Setting to 480I_576I filter mode failed!\n"); |