aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/dvb-core/dvb_frontend.h
diff options
context:
space:
mode:
authorSteven Toth <stoth@linuxtv.org>2008-09-11 09:19:27 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-10-12 07:37:04 -0400
commit56f0680a28397f4b412fc14f60ac380b910ee328 (patch)
treed8eddbb7b85487edabc5d456031f2289d57558fb /drivers/media/dvb/dvb-core/dvb_frontend.h
parentcc8c4f3a9c8dacff198438debd159ae4753744fc (diff)
V4L/DVB (8995): S2API: tv_ / TV_ to dtv_ / DTV_ namespace changes
The group preferred dtv_ over tv_, this implements it. Signed-off-by: Steven Toth <stoth@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/dvb-core/dvb_frontend.h')
-rw-r--r--drivers/media/dvb/dvb-core/dvb_frontend.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/dvb/dvb-core/dvb_frontend.h b/drivers/media/dvb/dvb-core/dvb_frontend.h
index 61d53ee70f2..f376f281cde 100644
--- a/drivers/media/dvb/dvb-core/dvb_frontend.h
+++ b/drivers/media/dvb/dvb-core/dvb_frontend.h
@@ -170,8 +170,8 @@ struct dvb_frontend_ops {
170 struct dvb_tuner_ops tuner_ops; 170 struct dvb_tuner_ops tuner_ops;
171 struct analog_demod_ops analog_ops; 171 struct analog_demod_ops analog_ops;
172 172
173 int (*set_property)(struct dvb_frontend* fe, tv_property_t* tvp); 173 int (*set_property)(struct dvb_frontend* fe, dtv_property_t* tvp);
174 int (*get_property)(struct dvb_frontend* fe, tv_property_t* tvp); 174 int (*get_property)(struct dvb_frontend* fe, dtv_property_t* tvp);
175 int (*set_params)(struct dvb_frontend* fe); 175 int (*set_params)(struct dvb_frontend* fe);
176}; 176};
177 177
@@ -186,7 +186,7 @@ struct dvb_fe_events {
186 struct mutex mtx; 186 struct mutex mtx;
187}; 187};
188 188
189struct tv_frontend_properties { 189struct dtv_frontend_properties {
190 190
191 /* Cache State */ 191 /* Cache State */
192 u32 state; 192 u32 state;
@@ -233,7 +233,7 @@ struct dvb_frontend {
233 void *frontend_priv; 233 void *frontend_priv;
234 void *sec_priv; 234 void *sec_priv;
235 void *analog_demod_priv; 235 void *analog_demod_priv;
236 struct tv_frontend_properties tv_property_cache; 236 struct dtv_frontend_properties dtv_property_cache;
237}; 237};
238 238
239extern int dvb_register_frontend(struct dvb_adapter *dvb, 239extern int dvb_register_frontend(struct dvb_adapter *dvb,