tools/power/x86/intel-speed-select: Do not export get_physical_id
Bugzilla: https://bugzilla.redhat.com/2154079 commit e616059ee6830242ffc68adc91a5486ac957dc1b Author: Zhang Rui <rui.zhang@intel.com> Date: Sat Aug 20 23:58:23 2022 +0800 tools/power/x86/intel-speed-select: Do not export get_physical_id Now, all the get_physical_pkg/die/core_id() users are inside isst-config.c, so no need to export these APIs. Signed-off-by: Zhang Rui <rui.zhang@intel.com> Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Signed-off-by: David Arcari <darcari@redhat.com>
This commit is contained in:
parent
c991a3ffa7
commit
48d98307d7
|
@ -298,7 +298,7 @@ static void store_cpu_topology(void)
|
|||
fclose(fp);
|
||||
}
|
||||
|
||||
int get_physical_package_id(int cpu)
|
||||
static int get_physical_package_id(int cpu)
|
||||
{
|
||||
int ret;
|
||||
|
||||
|
@ -316,7 +316,7 @@ int get_physical_package_id(int cpu)
|
|||
return ret;
|
||||
}
|
||||
|
||||
int get_physical_core_id(int cpu)
|
||||
static int get_physical_core_id(int cpu)
|
||||
{
|
||||
int ret;
|
||||
|
||||
|
@ -334,7 +334,7 @@ int get_physical_core_id(int cpu)
|
|||
return ret;
|
||||
}
|
||||
|
||||
int get_physical_die_id(int cpu)
|
||||
static int get_physical_die_id(int cpu)
|
||||
{
|
||||
int ret;
|
||||
|
||||
|
|
|
@ -187,8 +187,6 @@ extern int get_max_punit_core_id(struct isst_id *id);
|
|||
FILE *get_output_file(void);
|
||||
extern void debug_printf(const char *format, ...);
|
||||
extern int out_format_is_json(void);
|
||||
extern int get_physical_package_id(int cpu);
|
||||
extern int get_physical_die_id(int cpu);
|
||||
extern void set_isst_id(struct isst_id *id, int cpu);
|
||||
extern size_t alloc_cpu_set(cpu_set_t **cpu_set);
|
||||
extern void free_cpu_set(cpu_set_t *cpu_set);
|
||||
|
|
Loading…
Reference in New Issue