summaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/dvb-core/dvb_frontend.h
diff options
context:
space:
mode:
authorSteven Toth2008-09-11 15:19:27 +0200
committerMauro Carvalho Chehab2008-10-12 13:37:04 +0200
commit56f0680a28397f4b412fc14f60ac380b910ee328 (patch)
treed8eddbb7b85487edabc5d456031f2289d57558fb /drivers/media/dvb/dvb-core/dvb_frontend.h
parentV4L/DVB (8994): Adjust MPEG initialization in cx24116 (diff)
downloadkernel-qcow2-linux-56f0680a28397f4b412fc14f60ac380b910ee328.tar.gz
kernel-qcow2-linux-56f0680a28397f4b412fc14f60ac380b910ee328.tar.xz
kernel-qcow2-linux-56f0680a28397f4b412fc14f60ac380b910ee328.zip
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 61d53ee70f2a..f376f281cde2 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 {
struct dvb_tuner_ops tuner_ops;
struct analog_demod_ops analog_ops;
- int (*set_property)(struct dvb_frontend* fe, tv_property_t* tvp);
- int (*get_property)(struct dvb_frontend* fe, tv_property_t* tvp);
+ int (*set_property)(struct dvb_frontend* fe, dtv_property_t* tvp);
+ int (*get_property)(struct dvb_frontend* fe, dtv_property_t* tvp);
int (*set_params)(struct dvb_frontend* fe);
};
@@ -186,7 +186,7 @@ struct dvb_fe_events {
struct mutex mtx;
};
-struct tv_frontend_properties {
+struct dtv_frontend_properties {
/* Cache State */
u32 state;
@@ -233,7 +233,7 @@ struct dvb_frontend {
void *frontend_priv;
void *sec_priv;
void *analog_demod_priv;
- struct tv_frontend_properties tv_property_cache;
+ struct dtv_frontend_properties dtv_property_cache;
};
extern int dvb_register_frontend(struct dvb_adapter *dvb,