aboutsummaryrefslogtreecommitdiff
path: root/getfreq.c
diff options
context:
space:
mode:
authorDavid <dbphillipsnz@gmail.com>2014-07-23 14:29:10 +1200
committerDavid <dbphillipsnz@gmail.com>2014-07-23 14:29:10 +1200
commita0d65585015ca95a14fb319397fcf2bdab1440c4 (patch)
tree872a92d99bf0bfcc849f2713a4e0aeecaa4e1b30 /getfreq.c
parent0c6eed2505e7feb8b006b6140a077b10f0215704 (diff)
downloadparamano-a0d65585015ca95a14fb319397fcf2bdab1440c4.tar.xz
Fixed the fix
Diffstat (limited to 'getfreq.c')
-rw-r--r--getfreq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/getfreq.c b/getfreq.c
index e0a7286..6661a6e 100644
--- a/getfreq.c
+++ b/getfreq.c
@@ -45,7 +45,7 @@ void gf_init()
// Get available governor freqs. If no governor, try next cpu
if (gf_available(i, freq_string, sizeof(freq_string) ) == -1)
{
- debug("Couldn't find gov on core %d\n",i);
+ debug("Couldn't find freq scaling on core %d\n",i);
continue;
}
@@ -77,7 +77,7 @@ int gf_current(int core)
char path[80];
int freq;
- sprintf(path, "/sys/devices/system/cpu/cpu%d/cpufreq/cpuinfo_cur_freq", core);
+ sprintf(path, "/sys/devices/system/cpu/cpu%d/cpufreq/scaling_cur_freq", core);
if(!(fd = fopen(path, "r")))
{