[PATCH] USB: drivers/usb/media/sn9c102_core.c: make 2 functions static

This patch makes two needlessly global functions static.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Adrian Bunk 2005-04-22 15:07:00 -07:00 committed by Greg KH
parent be5e3383a9
commit 7107627b04
2 changed files with 2 additions and 4 deletions

View file

@ -429,7 +429,7 @@ sn9c102_i2c_try_read(struct sn9c102_device* cam,
} }
int static int
sn9c102_i2c_try_write(struct sn9c102_device* cam, sn9c102_i2c_try_write(struct sn9c102_device* cam,
struct sn9c102_sensor* sensor, u8 address, u8 value) struct sn9c102_sensor* sensor, u8 address, u8 value)
{ {
@ -785,7 +785,7 @@ static int sn9c102_stop_transfer(struct sn9c102_device* cam)
} }
int sn9c102_stream_interrupt(struct sn9c102_device* cam) static int sn9c102_stream_interrupt(struct sn9c102_device* cam)
{ {
int err = 0; int err = 0;

View file

@ -145,8 +145,6 @@ static const struct usb_device_id sn9c102_id_table[] = { \
*/ */
/* The "try" I2C I/O versions are used when probing the sensor */ /* The "try" I2C I/O versions are used when probing the sensor */
extern int sn9c102_i2c_try_write(struct sn9c102_device*,struct sn9c102_sensor*,
u8 address, u8 value);
extern int sn9c102_i2c_try_read(struct sn9c102_device*,struct sn9c102_sensor*, extern int sn9c102_i2c_try_read(struct sn9c102_device*,struct sn9c102_sensor*,
u8 address); u8 address);