Commit e616059e authored by Zhang Rui's avatar Zhang Rui Committed by Srinivas Pandruvada

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: default avatarZhang Rui <rui.zhang@intel.com>
Signed-off-by: default avatarSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
parent 00bb07db
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment