diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-12-31 16:12:32 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-12-31 16:12:32 +0000 |
| commit | 63e8b4dec748b32b605fc2bff52fd786e4439077 (patch) | |
| tree | f6dc69fbbeb598be8c979937704beaf90c738128 /lib/dvb/frontend.cpp | |
| parent | f503f202686fc9ff6859cf834e9a021922011b81 (diff) | |
| download | enigma2-63e8b4dec748b32b605fc2bff52fd786e4439077.tar.gz enigma2-63e8b4dec748b32b605fc2bff52fd786e4439077.zip | |
fix
Diffstat (limited to 'lib/dvb/frontend.cpp')
| -rw-r--r-- | lib/dvb/frontend.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dvb/frontend.cpp b/lib/dvb/frontend.cpp index 7bceaf58..0cb910fb 100644 --- a/lib/dvb/frontend.cpp +++ b/lib/dvb/frontend.cpp @@ -593,12 +593,12 @@ void eDVBFrontend::tuneLoop() // called by m_tuneTimer eDebug("[SEC] error read lnbp (%m)"); if ( m_sec_sequence.current()->mode == eSecCommand::modeStatic ) { - data[0] |= 0x90; // enable static current limiting + data[0] |= 0x80; // enable static current limiting eDebug("[SEC] set static current limiting"); } else { - data[0] &= ~0x90; // enable dynamic current limiting + data[0] &= ~0x80; // enable dynamic current limiting eDebug("[SEC] set dynamic current limiting"); } if(::write(fd, data, 1) != 1) |
