diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-06-24 01:05:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-24 03:06:43 -0400 |
commit | 52c1da39534fb382c061de58b65f678ad74b59f5 (patch) | |
tree | 92b18695f23afbc99374f844445f555a198978f2 /drivers/media | |
parent | d763b7a4736e219528f77bf6bc75dd78b1d75c03 (diff) |
[PATCH] make various thing static
Another rollup of patches which give various symbols static scope
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/common/saa7146_fops.c | 2 | ||||
-rw-r--r-- | drivers/media/video/tvaudio.c | 22 |
2 files changed, 12 insertions, 12 deletions
diff --git a/drivers/media/common/saa7146_fops.c b/drivers/media/common/saa7146_fops.c index cb826c9adfe7..c04fd11526e0 100644 --- a/drivers/media/common/saa7146_fops.c +++ b/drivers/media/common/saa7146_fops.c | |||
@@ -403,7 +403,7 @@ static struct file_operations video_fops = | |||
403 | .llseek = no_llseek, | 403 | .llseek = no_llseek, |
404 | }; | 404 | }; |
405 | 405 | ||
406 | void vv_callback(struct saa7146_dev *dev, unsigned long status) | 406 | static void vv_callback(struct saa7146_dev *dev, unsigned long status) |
407 | { | 407 | { |
408 | u32 isr = status; | 408 | u32 isr = status; |
409 | 409 | ||
diff --git a/drivers/media/video/tvaudio.c b/drivers/media/video/tvaudio.c index 5430b25b910d..9a493bea76d8 100644 --- a/drivers/media/video/tvaudio.c +++ b/drivers/media/video/tvaudio.c | |||
@@ -1236,17 +1236,17 @@ static int ta8874z_checkit(struct CHIPSTATE *chip) | |||
1236 | /* audio chip descriptions - struct CHIPDESC */ | 1236 | /* audio chip descriptions - struct CHIPDESC */ |
1237 | 1237 | ||
1238 | /* insmod options to enable/disable individual audio chips */ | 1238 | /* insmod options to enable/disable individual audio chips */ |
1239 | int tda8425 = 1; | 1239 | static int tda8425 = 1; |
1240 | int tda9840 = 1; | 1240 | static int tda9840 = 1; |
1241 | int tda9850 = 1; | 1241 | static int tda9850 = 1; |
1242 | int tda9855 = 1; | 1242 | static int tda9855 = 1; |
1243 | int tda9873 = 1; | 1243 | static int tda9873 = 1; |
1244 | int tda9874a = 1; | 1244 | static int tda9874a = 1; |
1245 | int tea6300 = 0; // address clash with msp34xx | 1245 | static int tea6300 = 0; // address clash with msp34xx |
1246 | int tea6320 = 0; // address clash with msp34xx | 1246 | static int tea6320 = 0; // address clash with msp34xx |
1247 | int tea6420 = 1; | 1247 | static int tea6420 = 1; |
1248 | int pic16c54 = 1; | 1248 | static int pic16c54 = 1; |
1249 | int ta8874z = 0; // address clash with tda9840 | 1249 | static int ta8874z = 0; // address clash with tda9840 |
1250 | 1250 | ||
1251 | module_param(tda8425, int, 0444); | 1251 | module_param(tda8425, int, 0444); |
1252 | module_param(tda9840, int, 0444); | 1252 | module_param(tda9840, int, 0444); |