aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/tvaudio.c
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2005-06-24 01:05:33 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-24 03:06:43 -0400
commit52c1da39534fb382c061de58b65f678ad74b59f5 (patch)
tree92b18695f23afbc99374f844445f555a198978f2 /drivers/media/video/tvaudio.c
parentd763b7a4736e219528f77bf6bc75dd78b1d75c03 (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/video/tvaudio.c')
-rw-r--r--drivers/media/video/tvaudio.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/media/video/tvaudio.c b/drivers/media/video/tvaudio.c
index 5430b25b910..9a493bea76d 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 */
1239int tda8425 = 1; 1239static int tda8425 = 1;
1240int tda9840 = 1; 1240static int tda9840 = 1;
1241int tda9850 = 1; 1241static int tda9850 = 1;
1242int tda9855 = 1; 1242static int tda9855 = 1;
1243int tda9873 = 1; 1243static int tda9873 = 1;
1244int tda9874a = 1; 1244static int tda9874a = 1;
1245int tea6300 = 0; // address clash with msp34xx 1245static int tea6300 = 0; // address clash with msp34xx
1246int tea6320 = 0; // address clash with msp34xx 1246static int tea6320 = 0; // address clash with msp34xx
1247int tea6420 = 1; 1247static int tea6420 = 1;
1248int pic16c54 = 1; 1248static int pic16c54 = 1;
1249int ta8874z = 0; // address clash with tda9840 1249static int ta8874z = 0; // address clash with tda9840
1250 1250
1251module_param(tda8425, int, 0444); 1251module_param(tda8425, int, 0444);
1252module_param(tda9840, int, 0444); 1252module_param(tda9840, int, 0444);