diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-03-08 08:50:07 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-03-08 10:04:28 -0500 |
commit | 044f324f6ea5d55391db62fca6a295b2651cb946 (patch) | |
tree | f78f08610cbaf93962703f68d332a8a312cb2a48 /drivers/media/video/msp3400-kthreads.c | |
parent | 793f225b0d77dd6a53614f5e312a28b754144d86 (diff) |
V4L/DVB (3415): Msp3400-kthreads.c: make 3 functions static
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>
Diffstat (limited to 'drivers/media/video/msp3400-kthreads.c')
-rw-r--r-- | drivers/media/video/msp3400-kthreads.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/video/msp3400-kthreads.c b/drivers/media/video/msp3400-kthreads.c index c4668f4b6e5c..852ab6a115fa 100644 --- a/drivers/media/video/msp3400-kthreads.c +++ b/drivers/media/video/msp3400-kthreads.c | |||
@@ -154,7 +154,7 @@ const char *msp_standard_std_name(int std) | |||
154 | return "unknown"; | 154 | return "unknown"; |
155 | } | 155 | } |
156 | 156 | ||
157 | void msp_set_source(struct i2c_client *client, u16 src) | 157 | static void msp_set_source(struct i2c_client *client, u16 src) |
158 | { | 158 | { |
159 | struct msp_state *state = i2c_get_clientdata(client); | 159 | struct msp_state *state = i2c_get_clientdata(client); |
160 | 160 | ||
@@ -217,7 +217,7 @@ void msp3400c_set_mode(struct i2c_client *client, int mode) | |||
217 | 217 | ||
218 | /* Set audio mode. Note that the pre-'G' models do not support BTSC+SAP, | 218 | /* Set audio mode. Note that the pre-'G' models do not support BTSC+SAP, |
219 | nor do they support stereo BTSC. */ | 219 | nor do they support stereo BTSC. */ |
220 | void msp3400c_set_audmode(struct i2c_client *client) | 220 | static void msp3400c_set_audmode(struct i2c_client *client) |
221 | { | 221 | { |
222 | static char *strmode[] = { "mono", "stereo", "lang2", "lang1" }; | 222 | static char *strmode[] = { "mono", "stereo", "lang2", "lang1" }; |
223 | struct msp_state *state = i2c_get_clientdata(client); | 223 | struct msp_state *state = i2c_get_clientdata(client); |
@@ -944,7 +944,7 @@ static void msp34xxg_detect_stereo(struct i2c_client *client) | |||
944 | status, is_stereo, is_bilingual, state->rxsubchans); | 944 | status, is_stereo, is_bilingual, state->rxsubchans); |
945 | } | 945 | } |
946 | 946 | ||
947 | void msp34xxg_set_audmode(struct i2c_client *client) | 947 | static void msp34xxg_set_audmode(struct i2c_client *client) |
948 | { | 948 | { |
949 | struct msp_state *state = i2c_get_clientdata(client); | 949 | struct msp_state *state = i2c_get_clientdata(client); |
950 | int source; | 950 | int source; |