diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-08-13 19:07:48 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-08-13 19:07:48 +0200 |
| commit | 9fd2c54ef3bf35619766b304b3945695eb9271a6 (patch) | |
| tree | c9b7d8387338105044b2873f6afa9fa6529ca24f /lib/dvb/frontend.cpp | |
| parent | 269c1d980e92fa79d72c19b0a51db16240b2649d (diff) | |
| download | enigma2-9fd2c54ef3bf35619766b304b3945695eb9271a6.tar.gz enigma2-9fd2c54ef3bf35619766b304b3945695eb9271a6.zip | |
dvb/frontend.cpp: fix DVB-C and DVB-T after yesterday change
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 9b64f697..cfb881ab 100644 --- a/lib/dvb/frontend.cpp +++ b/lib/dvb/frontend.cpp @@ -2141,7 +2141,7 @@ RESULT eDVBFrontend::tune(const iDVBFrontendParameters &where) goto tune_error; m_sec_sequence.push_back( eSecCommand(eSecCommand::START_TUNE_TIMEOUT, timeout) ); - m_sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) ); + m_sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND, 1) ); break; } case feTerrestrial: @@ -2166,7 +2166,7 @@ RESULT eDVBFrontend::tune(const iDVBFrontendParameters &where) m_sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, iDVBFrontend::voltage13) ); else m_sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, iDVBFrontend::voltageOff) ); - m_sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) ); + m_sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND, 1) ); break; } |
