diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-21 10:49:04 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-21 10:49:04 -0300 |
commit | 5f89b040e5e6f62823c22d0a8ae5c11df92db88b (patch) | |
tree | 5e1beadf904a4310c21790c3d35f4a42d6cd54cf /linux/drivers/media/dvb/frontends/tda10086.h | |
parent | 8492cd4705e11f3054cab5281ecffd4ed48d1a1a (diff) | |
parent | e48f91ecc0980d3b05a7642b96391a23d66d8f53 (diff) | |
download | mediapointer-dvb-s2-5f89b040e5e6f62823c22d0a8ae5c11df92db88b.tar.gz mediapointer-dvb-s2-5f89b040e5e6f62823c22d0a8ae5c11df92db88b.tar.bz2 |
merge: http://linuxtv.org/hg/~endriss/v4l-dvb
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/tda10086.h')
-rw-r--r-- | linux/drivers/media/dvb/frontends/tda10086.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/frontends/tda10086.h b/linux/drivers/media/dvb/frontends/tda10086.h index 197c237e5..61148c558 100644 --- a/linux/drivers/media/dvb/frontends/tda10086.h +++ b/linux/drivers/media/dvb/frontends/tda10086.h @@ -26,6 +26,11 @@ #include <linux/dvb/frontend.h> #include <linux/firmware.h> +enum tda10086_xtal { + TDA10086_XTAL_16M, + TDA10086_XTAL_4M +}; + struct tda10086_config { /* the demodulator's i2c address */ @@ -36,6 +41,9 @@ struct tda10086_config /* do we need the diseqc signal with carrier? */ u8 diseqc_tone; + + /* frequency of the reference xtal */ + enum tda10086_xtal xtal_freq; }; #if defined(CONFIG_DVB_TDA10086) || (defined(CONFIG_DVB_TDA10086_MODULE) && defined(MODULE)) @@ -48,6 +56,6 @@ static inline struct dvb_frontend* tda10086_attach(const struct tda10086_config* printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); return NULL; } -#endif // CONFIG_DVB_TDA10086 +#endif /* CONFIG_DVB_TDA10086 */ -#endif // TDA10086_H +#endif /* TDA10086_H */ |