Skip to content

Commit

Permalink
firedtv: dvb_frontend_info for FireDTV S2, fix "frequency limits unde…
Browse files Browse the repository at this point in the history
…fined" 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>
  • Loading branch information
Beat Michel Liechti authored and Stefan Richter committed Feb 24, 2009
1 parent 1549079 commit e73bf9f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/media/dvb/firewire/firedtv-fe.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e73bf9f

Please sign in to comment.