Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8fc350ab authored by Lad, Prabhakar's avatar Lad, Prabhakar Committed by Mauro Carvalho Chehab
Browse files

[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: default avatarLad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent d9ec089e
Loading
Loading
Loading
Loading
+0 −4
Original line number Original line Diff line number Diff line
@@ -38,7 +38,6 @@ struct ths7303_state {
	struct v4l2_bt_timings		bt;
	struct v4l2_bt_timings		bt;
	int std_id;
	int std_id;
	int stream_on;
	int stream_on;
	int driver_data;
};
};


enum ths7303_filter_mode {
enum ths7303_filter_mode {
@@ -355,9 +354,6 @@ static int ths7303_probe(struct i2c_client *client,
	sd = &state->sd;
	sd = &state->sd;
	v4l2_i2c_subdev_init(sd, client, &ths7303_ops);
	v4l2_i2c_subdev_init(sd, client, &ths7303_ops);


	/* store the driver data to differntiate the chip */
	state->driver_data = (int)id->driver_data;

	/* set to default 480I_576I filter mode */
	/* set to default 480I_576I filter mode */
	if (ths7303_setval(sd, THS7303_FILTER_MODE_480I_576I) < 0) {
	if (ths7303_setval(sd, THS7303_FILTER_MODE_480I_576I) < 0) {
		v4l_err(client, "Setting to 480I_576I filter mode failed!\n");
		v4l_err(client, "Setting to 480I_576I filter mode failed!\n");