dect
/
linux-2.6
Archived
13
0
Fork 0

V4L/DVB (7032): tda18271: tda18271_cal_on_startup should be declared static

This module option variable is only handled within the file tda18271-fe.c -

Declare this variable as static.

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
Michael Krufky 2008-01-14 11:10:54 -03:00 committed by Mauro Carvalho Chehab
parent 99beeee9e9
commit bc835d80d9
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ module_param_named(debug, tda18271_debug, int, 0644);
MODULE_PARM_DESC(debug, "set debug level "
"(info=1, map=2, reg=4, adv=8, cal=16 (or-able))");
int tda18271_cal_on_startup;
static int tda18271_cal_on_startup;
module_param_named(cal, tda18271_cal_on_startup, int, 0644);
MODULE_PARM_DESC(cal, "perform RF tracking filter calibration on startup");