Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb_satconf: fix typo
  • Loading branch information
perexg committed Oct 15, 2014
1 parent ee4043c commit 1159ba0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/input/mpegts/linuxdvb/linuxdvb_adapter.c
Expand Up @@ -164,6 +164,7 @@ linuxdvb_adapter_create
static dvb_fe_type_t
linux_dvb_get_type(int linux_type)
{
return DVB_TYPE_S;

This comment has been minimized.

Copy link
@ksooo

ksooo Oct 15, 2014

Contributor

wtf?

This comment has been minimized.

Copy link
@perexg

perexg Oct 15, 2014

Author Contributor

Removed it in 2637ee0

switch (linux_type) {
case FE_QPSK:
return DVB_TYPE_S;
Expand Down
2 changes: 1 addition & 1 deletion src/input/mpegts/linuxdvb/linuxdvb_satconf.c
Expand Up @@ -677,7 +677,7 @@ linuxdvb_satconf_ele_tune ( linuxdvb_satconf_ele_t *lse )
/* Set the tone (en50494 don't use tone) */
if (!lse->lse_en50494) {
b = lse->lse_lnb->lnb_band(lse->lse_lnb, lm);
tvhtrace("disqec", "set diseqc tone %s", b ? "on" : "off");
tvhtrace("diseqc", "set diseqc tone %s", b ? "on" : "off");
if (ioctl(lfe->lfe_fe_fd, FE_SET_TONE, b ? SEC_TONE_ON : SEC_TONE_OFF)) {
tvherror("diseqc", "failed to set diseqc tone (e=%s)", strerror(errno));
return -1;
Expand Down

0 comments on commit 1159ba0

Please sign in to comment.