Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 285660
b: refs/heads/master
c: 6225f18
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Jan 5, 2012
1 parent 544be6f commit 934988c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 534e04810304a9c6715220b392aa387197d5fa15
refs/heads/master: 6225f18b88b9ba6c6643aa8c1c96f51a9ad24380
7 changes: 6 additions & 1 deletion trunk/drivers/media/common/tuners/tda827x.c
Original file line number Diff line number Diff line change
Expand Up @@ -540,9 +540,14 @@ static int tda827xa_set_params(struct dvb_frontend *fe)
}
tuner_freq = c->frequency;

if (fe->ops.info.type == FE_QAM) {
switch (c->delivery_system) {
case SYS_DVBC_ANNEX_A:
case SYS_DVBC_ANNEX_C:
dprintk("%s select tda827xa_dvbc\n", __func__);
frequency_map = tda827xa_dvbc;
break;
default:
break;
}

i = 0;
Expand Down
6 changes: 1 addition & 5 deletions trunk/drivers/media/dvb/firewire/firedtv-fe.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ void fdtv_frontend_init(struct firedtv *fdtv, const char *name)
switch (fdtv->type) {
case FIREDTV_DVB_S:
ops->delsys[0] = SYS_DVBS;
fi->type = FE_QPSK;

fi->frequency_min = 950000;
fi->frequency_max = 2150000;
Expand All @@ -193,8 +192,7 @@ void fdtv_frontend_init(struct firedtv *fdtv, const char *name)

case FIREDTV_DVB_S2:
ops->delsys[0] = SYS_DVBS;
ops->delsys[1] = SYS_DVBS;
fi->type = FE_QPSK;
ops->delsys[1] = SYS_DVBS2;

fi->frequency_min = 950000;
fi->frequency_max = 2150000;
Expand All @@ -215,7 +213,6 @@ void fdtv_frontend_init(struct firedtv *fdtv, const char *name)

case FIREDTV_DVB_C:
ops->delsys[0] = SYS_DVBC_ANNEX_A;
fi->type = FE_QAM;

fi->frequency_min = 47000000;
fi->frequency_max = 866000000;
Expand All @@ -234,7 +231,6 @@ void fdtv_frontend_init(struct firedtv *fdtv, const char *name)

case FIREDTV_DVB_T:
ops->delsys[0] = SYS_DVBT;
fi->type = FE_OFDM;

fi->frequency_min = 49000000;
fi->frequency_max = 861000000;
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/staging/media/as102/as102_fe.c
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,6 @@ static struct dvb_frontend_ops as102_fe_ops = {
.delsys = { SYS_DVBT },
.info = {
.name = "Unknown AS102 device",
.type = FE_OFDM,
.frequency_min = 174000000,
.frequency_max = 862000000,
.frequency_stepsize = 166667,
Expand Down

0 comments on commit 934988c

Please sign in to comment.