diff options
Diffstat (limited to 'drivers/media/dvb/frontends/tda827x.h')
-rw-r--r-- | drivers/media/dvb/frontends/tda827x.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/dvb/frontends/tda827x.h b/drivers/media/dvb/frontends/tda827x.h index 92eb65b4012b..b73c23570dab 100644 --- a/drivers/media/dvb/frontends/tda827x.h +++ b/drivers/media/dvb/frontends/tda827x.h | |||
@@ -30,12 +30,12 @@ | |||
30 | struct tda827x_config | 30 | struct tda827x_config |
31 | { | 31 | { |
32 | /* saa7134 - provided callbacks */ | 32 | /* saa7134 - provided callbacks */ |
33 | void (*lna_gain) (struct dvb_frontend *fe, int high); | ||
34 | int (*init) (struct dvb_frontend *fe); | 33 | int (*init) (struct dvb_frontend *fe); |
35 | int (*sleep) (struct dvb_frontend *fe); | 34 | int (*sleep) (struct dvb_frontend *fe); |
36 | 35 | ||
37 | /* interface to tda829x driver */ | 36 | /* interface to tda829x driver */ |
38 | unsigned int *config; | 37 | unsigned int config; |
38 | int switch_addr; | ||
39 | int (*tuner_callback) (void *dev, int command, int arg); | 39 | int (*tuner_callback) (void *dev, int command, int arg); |
40 | 40 | ||
41 | void (*agcf)(struct dvb_frontend *fe); | 41 | void (*agcf)(struct dvb_frontend *fe); |
@@ -61,7 +61,7 @@ static inline struct dvb_frontend* tda827x_attach(struct dvb_frontend *fe, | |||
61 | struct i2c_adapter *i2c, | 61 | struct i2c_adapter *i2c, |
62 | struct tda827x_config *cfg) | 62 | struct tda827x_config *cfg) |
63 | { | 63 | { |
64 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__); | 64 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); |
65 | return NULL; | 65 | return NULL; |
66 | } | 66 | } |
67 | #endif // CONFIG_DVB_TDA827X | 67 | #endif // CONFIG_DVB_TDA827X |