[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:
parent
be5e3383a9
commit
7107627b04
2 changed files with 2 additions and 4 deletions
|
@ -429,7 +429,7 @@ sn9c102_i2c_try_read(struct sn9c102_device* cam,
|
|||
}
|
||||
|
||||
|
||||
int
|
||||
static int
|
||||
sn9c102_i2c_try_write(struct sn9c102_device* cam,
|
||||
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;
|
||||
|
||||
|
|
|
@ -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 */
|
||||
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*,
|
||||
u8 address);
|
||||
|
||||
|
|
Loading…
Reference in a new issue