aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-01-28 16:00:25 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-01-28 16:00:25 +0000
commitbc80bd34c76a4e99a8dce2e01add213ca91e8a3d (patch)
treef09012e1d75b3a29b21c7aafbb59b23d1089b86d /lib
parent2a148e8428ff9c4029e8eb0a5adea5477e9ad3e6 (diff)
downloadenigma2-bc80bd34c76a4e99a8dce2e01add213ca91e8a3d.tar.gz
enigma2-bc80bd34c76a4e99a8dce2e01add213ca91e8a3d.zip
our alps bsbe2 frontend also needs the rotor workaround
Diffstat (limited to 'lib')
-rw-r--r--lib/dvb/frontend.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/dvb/frontend.cpp b/lib/dvb/frontend.cpp
index 6a26ae98..168ff052 100644
--- a/lib/dvb/frontend.cpp
+++ b/lib/dvb/frontend.cpp
@@ -2151,7 +2151,9 @@ bool eDVBFrontend::setSlotInfo(ePyObject obj)
m_slotid = PyInt_AsLong(Id);
m_enabled = Enabled == Py_True;
// HACK.. the rotor workaround is neede for all NIMs with LNBP21 voltage regulator...
- m_need_rotor_workaround = !!strstr(m_description, "Alps BSBE1") || !!strstr(m_description, "Alps -S");
+ m_need_rotor_workaround = !!strstr(m_description, "Alps BSBE1") ||
+ !!strstr(m_description, "Alps BSBE2") ||
+ !!strstr(m_description, "Alps -S");
eDebug("setSlotInfo for dvb frontend %d to slotid %d, descr %s, need rotorworkaround %s, enabled %s",
m_dvbid, m_slotid, m_description, m_need_rotor_workaround ? "Yes" : "No", m_enabled ? "Yes" : "No" );
return true;