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>
This commit is contained in:
Steven Toth
2008-09-11 10:19:27 -03:00
committed by Mauro Carvalho Chehab
parent cc8c4f3a9c
commit 56f0680a28
4 changed files with 279 additions and 279 deletions
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -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,
+3 -3
View File
@@ -776,7 +776,7 @@ error:
static int cx24116_get_params(struct dvb_frontend* fe)
{
struct cx24116_state *state = fe->demodulator_priv;
struct tv_frontend_properties *cache = &fe->tv_property_cache;
struct dtv_frontend_properties *cache = &fe->dtv_property_cache;
dprintk("%s()\n",__func__);
@@ -796,7 +796,7 @@ static int cx24116_initfe(struct dvb_frontend* fe)
return cx24116_diseqc_init(fe);
}
static int cx24116_set_property(struct dvb_frontend *fe, tv_property_t* tvp)
static int cx24116_set_property(struct dvb_frontend *fe, dtv_property_t* tvp)
{
dprintk("%s(..)\n", __func__);
return 0;
@@ -814,7 +814,7 @@ static int cx24116_set_params(struct dvb_frontend *fe)
static int cx24116_set_frontend(struct dvb_frontend* fe, struct dvb_frontend_parameters *p)
{
struct cx24116_state *state = fe->demodulator_priv;
struct tv_frontend_properties *c = &fe->tv_property_cache;
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
struct cx24116_cmd cmd;
fe_status_t tunerstat;
int ret, above30msps;