remove obsolete g_info.delivery_system

Origin commit data
------------------
Branch: ni/coolstream
Commit: 20363fa8fd
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2014-12-25 (Thu, 25 Dec 2014)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2014-12-25 18:13:48 +01:00
parent f8f6c58bdc
commit d451d7950e
2 changed files with 0 additions and 14 deletions

View File

@@ -1718,7 +1718,6 @@ void CNeutrinoApp::SendSectionsdConfig(void)
void CNeutrinoApp::InitZapper() void CNeutrinoApp::InitZapper()
{ {
struct stat my_stat; struct stat my_stat;
g_channel_list_changed = false;
g_InfoViewer->start(); g_InfoViewer->start();
if (g_settings.epg_save){ if (g_settings.epg_save){
@@ -2008,18 +2007,6 @@ fprintf(stderr, "[neutrino start] %d -> %5ld ms\n", __LINE__, time_monotonic_ms
cpuFreq = new cCpuFreqManager(); cpuFreq = new cCpuFreqManager();
cpuFreq->SetCpuFreq(g_settings.cpufreq * 1000 * 1000); cpuFreq->SetCpuFreq(g_settings.cpufreq * 1000 * 1000);
switch (CFEManager::getInstance()->getLiveFE()->getInfo()->type) {
case FE_QPSK:
g_info.delivery_system = DVB_S;
break;
case FE_OFDM:
g_info.delivery_system = DVB_T;
break;
case FE_QAM:
default:
g_info.delivery_system = DVB_C;
break;
}
#if HAVE_COOL_HARDWARE #if HAVE_COOL_HARDWARE
/* only SAT-hd1 before rev 8 has fan */ /* only SAT-hd1 before rev 8 has fan */
g_info.has_fan = (cs_get_revision() < 8 && CFEManager::getInstance()->getFE(0)->hasSat()); g_info.has_fan = (cs_get_revision() < 8 && CFEManager::getInstance()->getFE(0)->hasSat());

View File

@@ -801,7 +801,6 @@ const time_settings_struct_t timing_setting[SNeutrinoSettings::TIMING_SETTING_CO
struct SglobalInfo struct SglobalInfo
{ {
unsigned char box_Type; unsigned char box_Type;
delivery_system_t delivery_system;
bool has_fan; bool has_fan;
hw_caps_t *hw_caps; hw_caps_t *hw_caps;
}; };