Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb: lnb - fix Ku 10750 (Hi-Band, Inverted-Polar.)
  • Loading branch information
perexg committed Sep 29, 2014
1 parent 836aec0 commit ecb2d76
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/input/mpegts/linuxdvb/linuxdvb_lnb.c
Expand Up @@ -116,7 +116,8 @@ linuxdvb_lnb_standard_tune
if (ls->lse_en50494)
return 0;

int pol = linuxdvb_lnb_standard_pol((linuxdvb_lnb_t*)ld, lm);
/* note: differentiate between linuxdvb_lnb_standard_pol / linuxdvb_lnb_inverted_pol */
int pol = ((linuxdvb_lnb_t*)ld)->lnb_pol((linuxdvb_lnb_t*)ld, lm);
return linuxdvb_diseqc_set_volt(fd, pol);
}

Expand Down

0 comments on commit ecb2d76

Please sign in to comment.