diff mbox series

Incorrect LNB settings for 10750 LNBs used in AU/NZ

Message ID 3f7e5c82f1c3b747d14b30df9f766f37@openmedia.co.nz (mailing list archive)
State New
Headers show
Series Incorrect LNB settings for 10750 LNBs used in AU/NZ | expand

Commit Message

Steven Ellis Feb. 24, 2025, 10:47 p.m. UTC
Tried submitting this as a patch but I'm not used to the process these 
days so I'll just send this as an email. If someone can send me a good 
guide on providing patches correctly that would be a great help.

Meanwhile the issue is if you're performing a dvbv5-scan or dvbv5-tune 
it produces errors if you use the LNB type L10750 as the upper frequency 
range is too low. Common LNBs used for SkyTV NZ and similar services in 
Australia have an upper range of 12750.

Example
  - https://www.dishtv.co.nz/LNB107KU

Here is a patch against the current git tree.

Steven


         }, {
                 .desc = {
diff mbox series

Patch

diff --git a/lib/libdvbv5/dvb-sat.c b/lib/libdvbv5/dvb-sat.c
index 36a42344..817a82e7 100644
--- a/lib/libdvbv5/dvb-sat.c
+++ b/lib/libdvbv5/dvb-sat.c
@@ -129,11 +129,11 @@  static const struct dvb_sat_lnb_priv lnb_array[] = 
{
                         // Legacy fields - kept just to avoid API/ABI 
breakages
                         .lowfreq = 10750,
                         .freqrange = {
-                               { 11700, 12200 }
+                               { 11700, 12750 }
                         },
                 },
                 .freqrange = {
-                      { 11700, 12200, 10750, 0 }
+                      { 11700, 12750, 10750, 0 }
                 },