提交 658efb63 编写于 作者: E Erik Andrén 提交者: Mauro Carvalho Chehab

V4L/DVB (10009): gspca - m5602: Convert some functions to be static

Signed-off-by: NErik Andrén <erik.andren@gmail.com>
Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
上级 082ec3b8
...@@ -18,6 +18,8 @@ ...@@ -18,6 +18,8 @@
#include "m5602_mt9m111.h" #include "m5602_mt9m111.h"
static void mt9m111_dump_registers(struct sd *sd);
int mt9m111_probe(struct sd *sd) int mt9m111_probe(struct sd *sd)
{ {
u8 data[2] = {0x00, 0x00}; u8 data[2] = {0x00, 0x00};
...@@ -308,7 +310,7 @@ int mt9m111_write_sensor(struct sd *sd, const u8 address, ...@@ -308,7 +310,7 @@ int mt9m111_write_sensor(struct sd *sd, const u8 address,
return (err < 0) ? err : 0; return (err < 0) ? err : 0;
} }
void mt9m111_dump_registers(struct sd *sd) static void mt9m111_dump_registers(struct sd *sd)
{ {
u8 address, value[2] = {0x00, 0x00}; u8 address, value[2] = {0x00, 0x00};
......
...@@ -93,8 +93,6 @@ int mt9m111_read_sensor(struct sd *sd, const u8 address, ...@@ -93,8 +93,6 @@ int mt9m111_read_sensor(struct sd *sd, const u8 address,
int mt9m111_write_sensor(struct sd *sd, const u8 address, int mt9m111_write_sensor(struct sd *sd, const u8 address,
u8 *i2c_data, const u8 len); u8 *i2c_data, const u8 len);
void mt9m111_dump_registers(struct sd *sd);
int mt9m111_set_vflip(struct gspca_dev *gspca_dev, __s32 val); int mt9m111_set_vflip(struct gspca_dev *gspca_dev, __s32 val);
int mt9m111_get_vflip(struct gspca_dev *gspca_dev, __s32 *val); int mt9m111_get_vflip(struct gspca_dev *gspca_dev, __s32 *val);
int mt9m111_get_hflip(struct gspca_dev *gspca_dev, __s32 *val); int mt9m111_get_hflip(struct gspca_dev *gspca_dev, __s32 *val);
......
...@@ -54,6 +54,8 @@ static ...@@ -54,6 +54,8 @@ static
{ } { }
}; };
static void ov9650_dump_registers(struct sd *sd);
int ov9650_read_sensor(struct sd *sd, const u8 address, int ov9650_read_sensor(struct sd *sd, const u8 address,
u8 *i2c_data, const u8 len) u8 *i2c_data, const u8 len)
{ {
...@@ -561,7 +563,7 @@ int ov9650_set_auto_gain(struct gspca_dev *gspca_dev, __s32 val) ...@@ -561,7 +563,7 @@ int ov9650_set_auto_gain(struct gspca_dev *gspca_dev, __s32 val)
return err; return err;
} }
void ov9650_dump_registers(struct sd *sd) static void ov9650_dump_registers(struct sd *sd)
{ {
int address; int address;
info("Dumping the ov9650 register state"); info("Dumping the ov9650 register state");
......
...@@ -129,9 +129,7 @@ int ov9650_power_down(struct sd *sd); ...@@ -129,9 +129,7 @@ int ov9650_power_down(struct sd *sd);
int ov9650_read_sensor(struct sd *sd, const u8 address, int ov9650_read_sensor(struct sd *sd, const u8 address,
u8 *i2c_data, const u8 len); u8 *i2c_data, const u8 len);
int ov9650_write_sensor(struct sd *sd, const u8 address, int ov9650_write_sensor(struct sd *sd, const u8 address,
u8 *i2c_data, const u8 len); u8 *i2c_data, const u8 len);
void ov9650_dump_registers(struct sd *sd);
int ov9650_set_exposure(struct gspca_dev *gspca_dev, __s32 val); int ov9650_set_exposure(struct gspca_dev *gspca_dev, __s32 val);
int ov9650_get_exposure(struct gspca_dev *gspca_dev, __s32 *val); int ov9650_get_exposure(struct gspca_dev *gspca_dev, __s32 *val);
......
...@@ -18,6 +18,8 @@ ...@@ -18,6 +18,8 @@
#include "m5602_po1030.h" #include "m5602_po1030.h"
static void po1030_dump_registers(struct sd *sd);
int po1030_probe(struct sd *sd) int po1030_probe(struct sd *sd)
{ {
u8 prod_id = 0, ver_id = 0, i; u8 prod_id = 0, ver_id = 0, i;
...@@ -375,7 +377,7 @@ int po1030_power_down(struct sd *sd) ...@@ -375,7 +377,7 @@ int po1030_power_down(struct sd *sd)
return 0; return 0;
} }
void po1030_dump_registers(struct sd *sd) static void po1030_dump_registers(struct sd *sd)
{ {
int address; int address;
u8 value = 0; u8 value = 0;
......
...@@ -128,8 +128,6 @@ int po1030_probe(struct sd *sd); ...@@ -128,8 +128,6 @@ int po1030_probe(struct sd *sd);
int po1030_init(struct sd *sd); int po1030_init(struct sd *sd);
int po1030_power_down(struct sd *sd); int po1030_power_down(struct sd *sd);
void po1030_dump_registers(struct sd *sd);
int po1030_read_sensor(struct sd *sd, const u8 address, int po1030_read_sensor(struct sd *sd, const u8 address,
u8 *i2c_data, const u8 len); u8 *i2c_data, const u8 len);
int po1030_write_sensor(struct sd *sd, const u8 address, int po1030_write_sensor(struct sd *sd, const u8 address,
......
...@@ -50,6 +50,7 @@ static ...@@ -50,6 +50,7 @@ static
{ } { }
}; };
static void s5k4aa_dump_registers(struct sd *sd);
int s5k4aa_probe(struct sd *sd) int s5k4aa_probe(struct sd *sd)
{ {
...@@ -455,7 +456,7 @@ int s5k4aa_set_gain(struct gspca_dev *gspca_dev, __s32 val) ...@@ -455,7 +456,7 @@ int s5k4aa_set_gain(struct gspca_dev *gspca_dev, __s32 val)
return err; return err;
} }
void s5k4aa_dump_registers(struct sd *sd) static void s5k4aa_dump_registers(struct sd *sd)
{ {
int address; int address;
u8 page, old_page; u8 page, old_page;
......
...@@ -67,8 +67,6 @@ int s5k4aa_probe(struct sd *sd); ...@@ -67,8 +67,6 @@ int s5k4aa_probe(struct sd *sd);
int s5k4aa_init(struct sd *sd); int s5k4aa_init(struct sd *sd);
int s5k4aa_power_down(struct sd *sd); int s5k4aa_power_down(struct sd *sd);
void s5k4aa_dump_registers(struct sd *sd);
int s5k4aa_read_sensor(struct sd *sd, const u8 address, int s5k4aa_read_sensor(struct sd *sd, const u8 address,
u8 *i2c_data, const u8 len); u8 *i2c_data, const u8 len);
int s5k4aa_write_sensor(struct sd *sd, const u8 address, int s5k4aa_write_sensor(struct sd *sd, const u8 address,
......
...@@ -18,6 +18,8 @@ ...@@ -18,6 +18,8 @@
#include "m5602_s5k83a.h" #include "m5602_s5k83a.h"
static void s5k83a_dump_registers(struct sd *sd);
int s5k83a_probe(struct sd *sd) int s5k83a_probe(struct sd *sd)
{ {
u8 prod_id = 0, ver_id = 0; u8 prod_id = 0, ver_id = 0;
......
...@@ -46,8 +46,6 @@ int s5k83a_probe(struct sd *sd); ...@@ -46,8 +46,6 @@ int s5k83a_probe(struct sd *sd);
int s5k83a_init(struct sd *sd); int s5k83a_init(struct sd *sd);
int s5k83a_power_down(struct sd *sd); int s5k83a_power_down(struct sd *sd);
void s5k83a_dump_registers(struct sd *sd);
int s5k83a_read_sensor(struct sd *sd, const u8 address, int s5k83a_read_sensor(struct sd *sd, const u8 address,
u8 *i2c_data, const u8 len); u8 *i2c_data, const u8 len);
int s5k83a_write_sensor(struct sd *sd, const u8 address, int s5k83a_write_sensor(struct sd *sd, const u8 address,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册