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

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

parent 082ec3b8
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@

#include "m5602_mt9m111.h"

static void mt9m111_dump_registers(struct sd *sd);

int mt9m111_probe(struct sd *sd)
{
	u8 data[2] = {0x00, 0x00};
@@ -308,7 +310,7 @@ int mt9m111_write_sensor(struct sd *sd, const u8 address,
	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};

+0 −2
Original line number Diff line number Diff line
@@ -93,8 +93,6 @@ int mt9m111_read_sensor(struct sd *sd, const u8 address,
int mt9m111_write_sensor(struct sd *sd, const u8 address,
			 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_get_vflip(struct gspca_dev *gspca_dev, __s32 *val);
int mt9m111_get_hflip(struct gspca_dev *gspca_dev, __s32 *val);
+3 −1
Original line number Diff line number Diff line
@@ -54,6 +54,8 @@ static
	{ }
};

static void ov9650_dump_registers(struct sd *sd);

int ov9650_read_sensor(struct sd *sd, const u8 address,
		      u8 *i2c_data, const u8 len)
{
@@ -561,7 +563,7 @@ int ov9650_set_auto_gain(struct gspca_dev *gspca_dev, __s32 val)
	return err;
}

void ov9650_dump_registers(struct sd *sd)
static void ov9650_dump_registers(struct sd *sd)
{
	int address;
	info("Dumping the ov9650 register state");
+1 −3
Original line number Diff line number Diff line
@@ -131,8 +131,6 @@ int ov9650_read_sensor(struct sd *sd, const u8 address,
int ov9650_write_sensor(struct sd *sd, const u8 address,
			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_get_exposure(struct gspca_dev *gspca_dev, __s32 *val);
int ov9650_get_gain(struct gspca_dev *gspca_dev, __s32 *val);
+3 −1
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@

#include "m5602_po1030.h"

static void po1030_dump_registers(struct sd *sd);

int po1030_probe(struct sd *sd)
{
	u8 prod_id = 0, ver_id = 0, i;
@@ -375,7 +377,7 @@ int po1030_power_down(struct sd *sd)
	return 0;
}

void po1030_dump_registers(struct sd *sd)
static void po1030_dump_registers(struct sd *sd)
{
	int address;
	u8 value = 0;
Loading