aboutsummaryrefslogtreecommitdiff
path: root/drivers/media/dvb
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2007-12-09 22:13:01 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-01-25 19:03:31 -0200
commit7206abbc2d19b6846b879fb266672b40da9961cb (patch)
tree3bf6d376850cb08ba1552eb72920aa813528f58f /drivers/media/dvb
parentf6e90a66cde270cd6cc7aa1f4f0650930aa7f6bc (diff)
V4L/DVB (6800): tda18271: use an enum rather than an integer to store analog / digital state
Use an enum rather than an integer #define to store analog / digital state. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb')
-rw-r--r--drivers/media/dvb/frontends/tda18271-fe.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/media/dvb/frontends/tda18271-fe.c b/drivers/media/dvb/frontends/tda18271-fe.c
index aecc0a5ac7b..dbf0f619a90 100644
--- a/drivers/media/dvb/frontends/tda18271-fe.c
+++ b/drivers/media/dvb/frontends/tda18271-fe.c
@@ -31,14 +31,16 @@ MODULE_PARM_DESC(debug, "set debug level (info=1, map=2, reg=4 (or-able))");
/*---------------------------------------------------------------------*/
-#define TDA18271_ANALOG 0
-#define TDA18271_DIGITAL 1
+enum tda18271_mode {
+ TDA18271_ANALOG,
+ TDA18271_DIGITAL,
+};
struct tda18271_priv {
u8 i2c_addr;
struct i2c_adapter *i2c_adap;
unsigned char tda18271_regs[TDA18271_NUM_REGS];
- int mode;
+ enum tda18271_mode mode;
u32 frequency;
u32 bandwidth;