mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
V4L/DVB (7104): stk-sensor.c: make 2 functions static
This patch makes the following needlessly global functions static: - stk_sensor_outb() - stk_sensor_inb() Signed-off-by: Adrian Bunk <bunk@kernel.org> Acked-by: Jaime Velasco Juan <jsagarribay@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
beb9e780a4
commit
fe2b8f50a3
2 changed files with 2 additions and 4 deletions
|
@ -225,7 +225,7 @@
|
|||
|
||||
|
||||
/* Returns 0 if OK */
|
||||
int stk_sensor_outb(struct stk_camera *dev, u8 reg, u8 val)
|
||||
static int stk_sensor_outb(struct stk_camera *dev, u8 reg, u8 val)
|
||||
{
|
||||
int i = 0;
|
||||
int tmpval = 0;
|
||||
|
@ -250,7 +250,7 @@ int stk_sensor_outb(struct stk_camera *dev, u8 reg, u8 val)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int stk_sensor_inb(struct stk_camera *dev, u8 reg, u8 *val)
|
||||
static int stk_sensor_inb(struct stk_camera *dev, u8 reg, u8 *val)
|
||||
{
|
||||
int i = 0;
|
||||
int tmpval = 0;
|
||||
|
|
|
@ -128,8 +128,6 @@ void stk_camera_delete(struct kref *);
|
|||
int stk_camera_write_reg(struct stk_camera *, u16, u8);
|
||||
int stk_camera_read_reg(struct stk_camera *, u16, int *);
|
||||
|
||||
int stk_sensor_outb(struct stk_camera *dev, u8 reg, u8 val);
|
||||
int stk_sensor_inb(struct stk_camera *dev, u8 reg, u8 *val);
|
||||
int stk_sensor_init(struct stk_camera *);
|
||||
int stk_sensor_configure(struct stk_camera *);
|
||||
int stk_sensor_sleep(struct stk_camera *dev);
|
||||
|
|
Loading…
Reference in a new issue