diff options
Diffstat (limited to 'include/media/tuner.h')
-rw-r--r-- | include/media/tuner.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/media/tuner.h b/include/media/tuner.h index 99acf847365c..a41ac41113ac 100644 --- a/include/media/tuner.h +++ b/include/media/tuner.h | |||
@@ -177,6 +177,8 @@ struct tuner_setup { | |||
177 | unsigned short addr; /* I2C address */ | 177 | unsigned short addr; /* I2C address */ |
178 | unsigned int type; /* Tuner type */ | 178 | unsigned int type; /* Tuner type */ |
179 | unsigned int mode_mask; /* Allowed tuner modes */ | 179 | unsigned int mode_mask; /* Allowed tuner modes */ |
180 | unsigned int config; /* configuraion for more complex tuners */ | ||
181 | int (*tuner_callback) (void *dev, int command,int arg); | ||
180 | }; | 182 | }; |
181 | 183 | ||
182 | struct tuner { | 184 | struct tuner { |
@@ -211,6 +213,9 @@ struct tuner { | |||
211 | unsigned char tda827x_ver; | 213 | unsigned char tda827x_ver; |
212 | unsigned int sgIF; | 214 | unsigned int sgIF; |
213 | 215 | ||
216 | unsigned int config; | ||
217 | int (*tuner_callback) (void *dev, int command,int arg); | ||
218 | |||
214 | /* function ptrs */ | 219 | /* function ptrs */ |
215 | void (*set_tv_freq)(struct i2c_client *c, unsigned int freq); | 220 | void (*set_tv_freq)(struct i2c_client *c, unsigned int freq); |
216 | void (*set_radio_freq)(struct i2c_client *c, unsigned int freq); | 221 | void (*set_radio_freq)(struct i2c_client *c, unsigned int freq); |