tools/power/turbostat: Rename rapl probing function

Rename rapl_probe() to probe_rapl() to be consistent with other probing
function names.

Probe rapl after probing uncore frequency.

Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Reviewed-by: Len Brown <len.brown@intel.com>
This commit is contained in:
Zhang Rui 2023-08-31 16:00:33 +08:00
parent 622c8f2355
commit 6cb13609a0

View File

@ -4865,11 +4865,11 @@ void rapl_probe_amd(void)
}
/*
* rapl_probe()
* probe_rapl()
*
* sets rapl_power_units, rapl_energy_units, rapl_time_units
*/
void rapl_probe(void)
void probe_rapl(void)
{
if (!platform->rapl_msrs)
return;
@ -5558,11 +5558,11 @@ void process_cpuid()
probe_intel_uncore_frequency();
probe_rapl();
if (platform->has_nhm_msrs)
BIC_PRESENT(BIC_SMI);
rapl_probe();
if (!access("/sys/class/drm/card0/power/rc6_residency_ms", R_OK))
BIC_PRESENT(BIC_GFX_rc6);