]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
linuxdvb: en50494 fix saving settings 460/head
authorSascha Kuehndel (InuSasha) <dev@inusasha.de>
Thu, 14 Aug 2014 18:07:36 +0000 (20:07 +0200)
committerSascha Kuehndel (InuSasha) <dev@inusasha.de>
Thu, 14 Aug 2014 18:07:36 +0000 (20:07 +0200)
src/input/mpegts/linuxdvb/linuxdvb_satconf.c

index b5ba0a0ef6abbc66532404e02115fd9de78314b8..63626e83f892a8b19852bfa18cc8645cc912917a 100644 (file)
@@ -364,7 +364,7 @@ linuxdvb_satconf_class_en50494_id_set
   linuxdvb_satconf_ele_t *lse;
   TAILQ_FOREACH(lse, &ls->ls_elements, lse_link)
     (((linuxdvb_en50494_t*)lse->lse_en50494)->le_id) = *(uint16_t*)v;
-  return 0;
+  return 1;
 }
 
 static const void *
@@ -383,7 +383,7 @@ linuxdvb_satconf_class_en50494_pin_set
   linuxdvb_satconf_ele_t *lse;
   TAILQ_FOREACH(lse, &ls->ls_elements, lse_link)
     (((linuxdvb_en50494_t*)lse->lse_en50494)->le_pin) = *(uint16_t*)v;
-  return 0;
+  return 1;
 }
 
 static const void *
@@ -402,7 +402,7 @@ linuxdvb_satconf_class_en50494_freq_set
   linuxdvb_satconf_ele_t *lse;
   TAILQ_FOREACH(lse, &ls->ls_elements, lse_link)
     (((linuxdvb_en50494_t*)lse->lse_en50494)->le_frequency) = *(uint16_t*)v;
-  return 0;
+  return 1;
 }
 
 const idclass_t linuxdvb_satconf_en50494_class =