Skip to content

Commit

Permalink
V4L/DVB (10011): m5602: Remove the write and read sensor from the mai…
Browse files Browse the repository at this point in the history
…n struct

Signed-off-by: Erik Andrén <erik.andren@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Erik Andrén authored and Mauro Carvalho Chehab committed Dec 30, 2008
1 parent 3efb6bd commit d58626c
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 18 deletions.
3 changes: 0 additions & 3 deletions drivers/media/video/gspca/m5602/m5602_mt9m111.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
{
Expand Down
4 changes: 1 addition & 3 deletions drivers/media/video/gspca/m5602/m5602_ov9650.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down Expand Up @@ -341,7 +339,7 @@ static const unsigned char init_ov9650[][3] =
{SENSOR, OV9650_ACOM38, 0x81},
/* Turn off color matrix coefficient double option */
{SENSOR, OV9650_COM16, 0x00},
/* Enable color matrix for RGB/YUV, Delay Y channel,
/* Enable color matrix for RGB/YUV, Delay Y channel,
set output Y/UV delay to 1 */
{SENSOR, OV9650_COM13, 0x19},
/* Enable digital BLC, Set output mode to U Y V Y */
Expand Down
2 changes: 0 additions & 2 deletions drivers/media/video/gspca/m5602/m5602_s5k4aa.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
2 changes: 0 additions & 2 deletions drivers/media/video/gspca/m5602/m5602_s5k83a.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
8 changes: 0 additions & 8 deletions drivers/media/video/gspca/m5602/m5602_sensor.h
Original file line number Diff line number Diff line change
Expand Up @@ -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];

Expand Down

0 comments on commit d58626c

Please sign in to comment.