summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb/frontends
diff options
context:
space:
mode:
authorSteven Toth <stoth@linuxtv.org>2008-09-11 09:19:27 -0400
committerSteven Toth <stoth@linuxtv.org>2008-09-11 09:19:27 -0400
commit68901d77882c18dcb4f6e1fa0309e93893f1a7a0 (patch)
tree5b952c7df4f35739bdb468fcf1c4fbf6a7777c1b /linux/drivers/media/dvb/frontends
parent50d5ab75a9850d1005a8081553333b23556d1e99 (diff)
downloadmediapointer-dvb-s2-68901d77882c18dcb4f6e1fa0309e93893f1a7a0.tar.gz
mediapointer-dvb-s2-68901d77882c18dcb4f6e1fa0309e93893f1a7a0.tar.bz2
S2API: tv_ / TV_ to dtv_ / DTV_ namespace changes
From: Steven Toth <stoth@linuxtv.org> The group preferred dtv_ over tv_, this implements it. Priority: normal Signed-off-by: Steven Toth <stoth@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends')
-rw-r--r--linux/drivers/media/dvb/frontends/cx24116.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/drivers/media/dvb/frontends/cx24116.c b/linux/drivers/media/dvb/frontends/cx24116.c
index fbb459245..f150fa24f 100644
--- a/linux/drivers/media/dvb/frontends/cx24116.c
+++ b/linux/drivers/media/dvb/frontends/cx24116.c
@@ -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;
@@ -852,7 +852,7 @@ static int cx24116_set_frontend(struct dvb_frontend* fe, struct dvb_frontend_par
if (above30msps){
cx24116_writereg(state, 0xF9, 0x01);
cx24116_writereg(state, 0xF3, 0x44);
- } else {
+ } else {
cx24116_writereg(state, 0xF9, 0x00);
cx24116_writereg(state, 0xF3, 0x46);
}