aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorBeat Michel Liechti <bml303@gmail.com>2009-02-24 15:52:49 +0100
committerStefan Richter <stefanr@s5r6.in-berlin.de>2009-02-24 17:58:23 +0100
commite73bf9f135fe1e5db646e668676d22af3008e0c0 (patch)
tree46bc81592f1bc024986c409a0ae5dda147cd1277 /drivers
parent154907957f9391b1af997b57507b16c018cc4995 (diff)
firedtv: dvb_frontend_info for FireDTV S2, fix "frequency limits undefined" error
I found that the function fdtv_frontend_init in the file firedtv-fe.c was missing a case for FIREDTV_DVB_S2 which resulted in "frequency limits undefined" errors in syslog. Signed-off-by: Beat Michel Liechti <bml303@gmail.com> Change by Stefan R: combine it with case case FIREDTV_DVB_S as originally suggested by Beat Michel. This enables FE_CAN_FEC_AUTO also for FireDTV-S2 devices which is possible as long as only DVB-S channels are used. FE_CAN_FEC_AUTO would be wrong for DVB-S2 channels, but those cannot be used yet since the driver is not yet converted to S2API. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/dvb/firewire/firedtv-fe.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/dvb/firewire/firedtv-fe.c b/drivers/media/dvb/firewire/firedtv-fe.c
index 9b9539c800f..7ba43630a25 100644
--- a/drivers/media/dvb/firewire/firedtv-fe.c
+++ b/drivers/media/dvb/firewire/firedtv-fe.c
@@ -185,6 +185,7 @@ void fdtv_frontend_init(struct firedtv *fdtv)
switch (fdtv->type) {
case FIREDTV_DVB_S:
+ case FIREDTV_DVB_S2:
fi->type = FE_QPSK;
fi->frequency_min = 950000;