Commit d58626c2 authored by Erik Andrén's avatar Erik Andrén Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (10011): m5602: Remove the write and read sensor from the main struct

parent 3efb6bda
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -109,9 +109,6 @@ static struct m5602_sensor mt9m111 = {
	.init = mt9m111_init,
	.power_down = mt9m111_power_down,

	.read_sensor = mt9m111_read_sensor,
	.write_sensor = mt9m111_write_sensor,

	.nctrls = 3,
	.ctrls = {
	{
+1 −3
Original line number Diff line number Diff line
@@ -156,8 +156,6 @@ static struct m5602_sensor ov9650 = {
	.probe = ov9650_probe,
	.init = ov9650_init,
	.power_down = ov9650_power_down,
	.read_sensor = ov9650_read_sensor,
	.write_sensor = ov9650_write_sensor,

	.nctrls = 8,
	.ctrls = {
+0 −2
Original line number Diff line number Diff line
@@ -86,8 +86,6 @@ static struct m5602_sensor s5k4aa = {
	.probe = s5k4aa_probe,
	.init = s5k4aa_init,
	.power_down = s5k4aa_power_down,
	.read_sensor = s5k4aa_read_sensor,
	.write_sensor = s5k4aa_write_sensor,
	.i2c_slave_id = 0x5a,
	.nctrls = 4,
	.ctrls = {
+0 −2
Original line number Diff line number Diff line
@@ -68,8 +68,6 @@ static struct m5602_sensor s5k83a = {
	.probe = s5k83a_probe,
	.init = s5k83a_init,
	.power_down = s5k83a_power_down,
	.read_sensor = s5k83a_read_sensor,
	.write_sensor = s5k83a_write_sensor,
	.i2c_slave_id = 0x5a,
	.nctrls = 5,
	.ctrls = {
+0 −8
Original line number Diff line number Diff line
@@ -58,14 +58,6 @@ struct m5602_sensor {
	/* Performs a power down sequence */
	int (*power_down)(struct sd *sd);

	/* Reads a sensor register */
	int (*read_sensor)(struct sd *sd, const u8 address,
	      u8 *i2c_data, const u8 len);

	/* Writes to a sensor register */
	int (*write_sensor)(struct sd *sd, const u8 address,
	      u8 *i2c_data, const u8 len);

	int nctrls;
	struct ctrl ctrls[M5602_MAX_CTRLS];