diff options
author | Manu Abraham <abraham.manu@gmail.com> | 2007-09-22 13:30:09 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-29 17:53:15 -0200 |
commit | 00360205b94cb9d0b93be5f4ca6676b53dceba7f (patch) | |
tree | 6b3bde604170c02a1404e86c7ffe25d61e9f699d /drivers/media/dvb/frontends/tda8261.h | |
parent | 43498ade8ade7cee1b983e5410c838ac84eef691 (diff) |
V4L/DVB (9392): initial go at TDA8261 tuner
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/tda8261.h')
-rw-r--r-- | drivers/media/dvb/frontends/tda8261.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/tda8261.h b/drivers/media/dvb/frontends/tda8261.h new file mode 100644 index 00000000000..b8d8e37b045 --- /dev/null +++ b/drivers/media/dvb/frontends/tda8261.h @@ -0,0 +1,25 @@ +#ifndef __TDA8261_H +#define __TDA8261_H + +enum tda8261_step { + TDA8261_STEP_2000 = 0, /* 2000 kHz */ + TDA8261_STEP_1000, /* 1000 kHz */ + TDA8261_STEP_500, /* 500 kHz */ + TDA8261_STEP_250, /* 250 kHz */ + TDA8261_STEP_125 /* 125 kHz */ +}; + +struct tda8261_config { +// u8 buf[16]; + u8 addr; + enum tda8261_step step_size; +}; + +/* move out from here! */ +static const struct tda8261_config sd1878c_config = { +// .name = "SD1878C", + .addr = 0x60, + .step_size = TDA8261_STEP_1000 /* kHz */ +}; + +#endif// __TDA8261_H |