Skip to content

Commit

Permalink
V4L/DVB (3415): Msp3400-kthreads.c: make 3 functions static
Browse files Browse the repository at this point in the history
This patch makes three needlessly global functions static.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Adrian Bunk authored and Mauro Carvalho Chehab committed Mar 8, 2006
1 parent 793f225 commit 044f324
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions drivers/media/video/msp3400-kthreads.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const char *msp_standard_std_name(int std)
return "unknown";
}

void msp_set_source(struct i2c_client *client, u16 src)
static void msp_set_source(struct i2c_client *client, u16 src)
{
struct msp_state *state = i2c_get_clientdata(client);

Expand Down Expand Up @@ -217,7 +217,7 @@ void msp3400c_set_mode(struct i2c_client *client, int mode)

/* Set audio mode. Note that the pre-'G' models do not support BTSC+SAP,
nor do they support stereo BTSC. */
void msp3400c_set_audmode(struct i2c_client *client)
static void msp3400c_set_audmode(struct i2c_client *client)
{
static char *strmode[] = { "mono", "stereo", "lang2", "lang1" };
struct msp_state *state = i2c_get_clientdata(client);
Expand Down Expand Up @@ -944,7 +944,7 @@ static void msp34xxg_detect_stereo(struct i2c_client *client)
status, is_stereo, is_bilingual, state->rxsubchans);
}

void msp34xxg_set_audmode(struct i2c_client *client)
static void msp34xxg_set_audmode(struct i2c_client *client)
{
struct msp_state *state = i2c_get_clientdata(client);
int source;
Expand Down
1 change: 0 additions & 1 deletion drivers/media/video/msp3400.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ int msp_sleep(struct msp_state *state, int timeout);

/* msp3400-kthreads.c */
const char *msp_standard_std_name(int std);
void msp_set_source(struct i2c_client *client, u16 src);
void msp_set_audmode(struct i2c_client *client);
void msp_detect_stereo(struct i2c_client *client);
int msp3400c_thread(void *data);
Expand Down

0 comments on commit 044f324

Please sign in to comment.