diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-05-16 00:15:53 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-05-16 00:15:53 +0000 |
commit | 775ba6a274cfac356d94849e5f33cd937a581d02 (patch) | |
tree | c7a1c060f5f34c9ea348551783f5a76df47024c3 /linux/drivers/media/common/tuners/mxl5005s.c | |
parent | 5d094711b0e5e5dea6e32b849ea2efc9ca5aea55 (diff) | |
download | mediapointer-dvb-s2-775ba6a274cfac356d94849e5f33cd937a581d02.tar.gz mediapointer-dvb-s2-775ba6a274cfac356d94849e5f33cd937a581d02.tar.bz2 |
tuners/mxl5005s.c: don't define variables for enums
From: Adrian Bunk <bunk@kernel.org>
It doesn't seem to be intended that "tuner_modu_type" and
"MXL5005_ControlName" were global variables.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/common/tuners/mxl5005s.c')
-rw-r--r-- | linux/drivers/media/common/tuners/mxl5005s.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/common/tuners/mxl5005s.c b/linux/drivers/media/common/tuners/mxl5005s.c index 961a8af08..80f87c19f 100644 --- a/linux/drivers/media/common/tuners/mxl5005s.c +++ b/linux/drivers/media/common/tuners/mxl5005s.c @@ -101,7 +101,7 @@ enum { MXL_QAM, MXL_ANALOG_CABLE, MXL_ANALOG_OTA -} tuner_modu_type; +}; /* MXL5005 Tuner Register Struct */ struct TunerReg { @@ -194,7 +194,7 @@ enum { RFSYN_DIVM, /* 88 */ DN_BYPASS_AGC_I2C /* 89 */ #endif -} MXL5005_ControlName; +}; /* * The following context is source code provided by MaxLinear. |