Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb: use DTV_LNA only when set, fixes #2807
  • Loading branch information
perexg committed Apr 28, 2015
1 parent 5ba809b commit 97229aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/input/mpegts/linuxdvb/linuxdvb_frontend.c
Expand Up @@ -1417,7 +1417,8 @@ linuxdvb_frontend_tune0
#endif
}
#if DVB_VER_ATLEAST(5,9)
S2CMD(DTV_LNA, lfe->lfe_lna ? 1 : 0);
if (lfe->lfe_lna)
S2CMD(DTV_LNA, 1);
#endif

/* DVB-C */
Expand Down

0 comments on commit 97229aa

Please sign in to comment.