Skip to content

Commit

Permalink
fix function pointer for intel model/family 06-4f (#536)
Browse files Browse the repository at this point in the history
pointed at implementation for 3f, but should use implementation for 4f
  • Loading branch information
slabasan authored Mar 25, 2024
1 parent 790446f commit c18b9a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/variorum/Intel/config_intel.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ int set_intel_func_ptrs(int idx)
g_platform[idx].variorum_get_thermals_json =
intel_cpu_fm_06_4f_get_thermals_json;
g_platform[idx].variorum_get_frequency_json =
intel_cpu_fm_06_3f_get_clocks_json;
intel_cpu_fm_06_4f_get_clocks_json;
g_platform[idx].variorum_get_energy_json =
intel_cpu_fm_06_4f_get_energy_json;
}
Expand Down

0 comments on commit c18b9a8

Please sign in to comment.