mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 12:42:02 +00:00
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>
This commit is contained in:
parent
00bb07db5a
commit
e616059ee6
@ -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
Block a user