Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb: fix typo in PILOT translation table def
This results in tuning failures as PILOT_NONE maps to -1, which is
rejected by (some?) drivers.
  • Loading branch information
adamsutton committed Jul 14, 2015
1 parent 9cebb52 commit 0a1b720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/linuxdvb/linuxdvb_frontend.c
Expand Up @@ -1278,7 +1278,7 @@ linuxdvb_frontend_tune0
{ .t = DVB_PILOT_AUTO, .l = PILOT_AUTO },
{ .t = DVB_PILOT_ON, .l = PILOT_ON },
{ .t = DVB_PILOT_OFF, .l = PILOT_OFF },
{ .l = TABLE_EOD }
{ .t = TABLE_EOD }
};
static linuxdvb_tbl_t rolloff_tbl[] = {
{ .t = DVB_HIERARCHY_AUTO, .l = ROLLOFF_AUTO },
Expand Down

0 comments on commit 0a1b720

Please sign in to comment.