mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-08 06:08:29 +02:00
simple-display: remove obsolete file_exists() checks
Origin commit data
------------------
Branch: ni/coolstream
Commit: faef2e68b5
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-07-06 (Tue, 06 Jul 2021)
Origin message was:
------------------
- simple-display: remove obsolete file_exists() checks
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -481,7 +481,7 @@ void CLCD::setMode(const MODES m, const char * const title)
|
||||
mode = m;
|
||||
|
||||
setlcdparameter();
|
||||
if ((g_info.hw_caps->display_type == HW_DISPLAY_NONE) && file_exists("/proc/stb/power/powerled"))
|
||||
if (g_info.hw_caps->display_type == HW_DISPLAY_NONE)
|
||||
proc_put("/proc/stb/power/powerled", "on");
|
||||
proc_put("/proc/stb/lcd/show_symbols", true);
|
||||
switch (m) {
|
||||
@@ -503,7 +503,7 @@ void CLCD::setMode(const MODES m, const char * const title)
|
||||
case MODE_SHUTDOWN:
|
||||
showclock = false;
|
||||
Clear();
|
||||
if ((g_info.hw_caps->display_type == HW_DISPLAY_NONE) && file_exists("/proc/stb/power/powerled"))
|
||||
if (g_info.hw_caps->display_type == HW_DISPLAY_NONE)
|
||||
proc_put("/proc/stb/power/powerled", "off");
|
||||
proc_put("/proc/stb/lcd/show_symbols", false);
|
||||
break;
|
||||
@@ -514,7 +514,7 @@ void CLCD::setMode(const MODES m, const char * const title)
|
||||
setled(0, 1);
|
||||
showclock = true;
|
||||
showTime(true);
|
||||
if ((g_info.hw_caps->display_type == HW_DISPLAY_NONE) && file_exists("/proc/stb/power/powerled"))
|
||||
if (g_info.hw_caps->display_type == HW_DISPLAY_NONE)
|
||||
proc_put("/proc/stb/power/powerled", "off");
|
||||
proc_put("/proc/stb/lcd/show_symbols", false);
|
||||
timeout_cnt = 0;
|
||||
|
Reference in New Issue
Block a user