You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
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:
committed by
Mauro Carvalho Chehab
parent
cc8c4f3a9c
commit
56f0680a28
File diff suppressed because it is too large
Load Diff
@@ -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,
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user