summaryrefslogtreecommitdiff
path: root/tools/lib/api/cpu.c
blob: 8c6489356e3ac7dcf6e812b928e2dd363be24ca2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>

#include "cpu.h"
#include "fs/fs.h"

int cpu__get_max_freq(unsigned long long *freq)
{
	char entry[PATH_MAX];
	int cpu;

	if (sysfs__read_int("devices/system/cpu/online", &cpu) < 0)
		return -1;

	snprintf(entry, sizeof(entry),
		 "devices/system/cpu/cpu%d/cpufreq/cpuinfo_max_freq", cpu);

	return sysfs__read_ull(entry, freq);
}
t.git/patch/drivers?id=7602011f59cc32ebc3a5f9058d6ba11b096c8c50'>patch) treeaf5acf8e2cdc964227860ce67d9026a7f8e7c085 /drivers parentdaa86e50f649fccadafc53994ddc4254d75a008b (diff)
ldmvsw: update and simplify version string
New version and simplify the print code. Signed-off-by: Shannon Nelson <shannon.nelson@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')