diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-28 22:11:15 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-28 22:11:15 +0000 |
commit | 31dc32b2283a00f1f7a343c9aa31701c848254e1 (patch) | |
tree | f236e4a1c4987093a9c2fe390cb357ba02504c23 /linux/drivers | |
parent | 385578235efd5f637ce504f497c112c341866a89 (diff) | |
download | mediapointer-dvb-s2-31dc32b2283a00f1f7a343c9aa31701c848254e1.tar.gz mediapointer-dvb-s2-31dc32b2283a00f1f7a343c9aa31701c848254e1.tar.bz2 |
make tuner-core.c:tuner_list static
From: Adrian Bunk <bunk@kernel.org>
tuner_list can become static - and it's anyway a way too generic name
for a global variable - see commit b00ef4b8d8c29bfb5f6f92ee60bc04b604f36ef2
for a completely different global variable of the same name I just made
static...
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers')
-rw-r--r-- | linux/drivers/media/video/tuner-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/tuner-core.c b/linux/drivers/media/video/tuner-core.c index 209857aef..95bb41cee 100644 --- a/linux/drivers/media/video/tuner-core.c +++ b/linux/drivers/media/video/tuner-core.c @@ -1082,7 +1082,7 @@ static int tuner_resume(struct i2c_client *c) /* ---------------------------------------------------------------------- */ -LIST_HEAD(tuner_list); +static LIST_HEAD(tuner_list); /* Search for existing radio and/or TV tuners on the given I2C adapter. Note that when this function is called from tuner_probe you can be |