diff options
Diffstat (limited to 'drivers/media/dvb/frontends/stv0299.h')
-rw-r--r-- | drivers/media/dvb/frontends/stv0299.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/drivers/media/dvb/frontends/stv0299.h b/drivers/media/dvb/frontends/stv0299.h index 33df9495908f..3282f43022f5 100644 --- a/drivers/media/dvb/frontends/stv0299.h +++ b/drivers/media/dvb/frontends/stv0299.h | |||
@@ -48,10 +48,10 @@ | |||
48 | #include <linux/dvb/frontend.h> | 48 | #include <linux/dvb/frontend.h> |
49 | #include "dvb_frontend.h" | 49 | #include "dvb_frontend.h" |
50 | 50 | ||
51 | #define STV0229_LOCKOUTPUT_0 0 | 51 | #define STV0299_LOCKOUTPUT_0 0 |
52 | #define STV0229_LOCKOUTPUT_1 1 | 52 | #define STV0299_LOCKOUTPUT_1 1 |
53 | #define STV0229_LOCKOUTPUT_CF 2 | 53 | #define STV0299_LOCKOUTPUT_CF 2 |
54 | #define STV0229_LOCKOUTPUT_LK 3 | 54 | #define STV0299_LOCKOUTPUT_LK 3 |
55 | 55 | ||
56 | #define STV0299_VOLT13_OP0 0 | 56 | #define STV0299_VOLT13_OP0 0 |
57 | #define STV0299_VOLT13_OP1 1 | 57 | #define STV0299_VOLT13_OP1 1 |
@@ -82,6 +82,9 @@ struct stv0299_config | |||
82 | /* Is 13v controlled by OP0 or OP1? */ | 82 | /* Is 13v controlled by OP0 or OP1? */ |
83 | u8 volt13_op0_op1:1; | 83 | u8 volt13_op0_op1:1; |
84 | 84 | ||
85 | /* Turn-off OP0? */ | ||
86 | u8 op0_off:1; | ||
87 | |||
85 | /* minimum delay before retuning */ | 88 | /* minimum delay before retuning */ |
86 | int min_delay_ms; | 89 | int min_delay_ms; |
87 | 90 | ||
@@ -96,7 +99,7 @@ extern struct dvb_frontend* stv0299_attach(const struct stv0299_config* config, | |||
96 | static inline struct dvb_frontend* stv0299_attach(const struct stv0299_config* config, | 99 | static inline struct dvb_frontend* stv0299_attach(const struct stv0299_config* config, |
97 | struct i2c_adapter* i2c) | 100 | struct i2c_adapter* i2c) |
98 | { | 101 | { |
99 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__); | 102 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); |
100 | return NULL; | 103 | return NULL; |
101 | } | 104 | } |
102 | #endif // CONFIG_DVB_STV0299 | 105 | #endif // CONFIG_DVB_STV0299 |