| From 4d1368d20f04216aec9551d9845b305f96a21015 Mon Sep 17 00:00:00 2001 |
| From: Stephan Raue <stephan@openelec.tv> |
| Date: Mon, 1 Sep 2014 03:16:37 +0200 |
| Subject: [PATCH 05/10] add support to read frequency output if using intel's |
| pstate driver |
| |
| --- |
| xbmc/utils/CPUInfo.cpp | 2 ++ |
| 1 file changed, 2 insertions(+) |
| |
| diff --git a/xbmc/utils/CPUInfo.cpp b/xbmc/utils/CPUInfo.cpp |
| index 5e2ebbd..fd04d5a 100644 |
| --- a/xbmc/utils/CPUInfo.cpp |
| +++ b/xbmc/utils/CPUInfo.cpp |
| @@ -274,6 +274,8 @@ CCPUInfo::CCPUInfo(void) |
| m_fProcTemperature = fopen("/sys/class/thermal/thermal_zone0/temp", "r"); // On Raspberry PIs |
| |
| m_fCPUFreq = fopen ("/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq", "r"); |
| + if (m_fCPUFreq == NULL) |
| + m_fCPUFreq = fopen ("/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq", "r"); |
| if (!m_fCPUFreq) |
| { |
| m_cpuInfoForFreq = true; |
| -- |
| 2.10.2 |
| |