提交 cf3289d0 编写于 作者: A Alex Chiang 提交者: Dave Jones

[CPUFREQ] make internal cpufreq_add_dev_* static

No need to export these symbols; make them static.

	cpufreq_add_dev_policy
	cpufreq_add_dev_symlink
	cpufreq_add_dev_interface
Signed-off-by: NAlex Chiang <achiang@hp.com>
Signed-off-by: NDave Jones <davej@redhat.com>
上级 1cce76c2
...@@ -767,8 +767,9 @@ static struct kobj_type ktype_cpufreq = { ...@@ -767,8 +767,9 @@ static struct kobj_type ktype_cpufreq = {
* 0: Success * 0: Success
* Positive: When we have a managed CPU and the sysfs got symlinked * Positive: When we have a managed CPU and the sysfs got symlinked
*/ */
int cpufreq_add_dev_policy(unsigned int cpu, struct cpufreq_policy *policy, static int cpufreq_add_dev_policy(unsigned int cpu,
struct sys_device *sys_dev) struct cpufreq_policy *policy,
struct sys_device *sys_dev)
{ {
int ret = 0; int ret = 0;
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
...@@ -842,7 +843,8 @@ int cpufreq_add_dev_policy(unsigned int cpu, struct cpufreq_policy *policy, ...@@ -842,7 +843,8 @@ int cpufreq_add_dev_policy(unsigned int cpu, struct cpufreq_policy *policy,
/* symlink affected CPUs */ /* symlink affected CPUs */
int cpufreq_add_dev_symlink(unsigned int cpu, struct cpufreq_policy *policy) static int cpufreq_add_dev_symlink(unsigned int cpu,
struct cpufreq_policy *policy)
{ {
unsigned int j; unsigned int j;
int ret = 0; int ret = 0;
...@@ -869,8 +871,9 @@ int cpufreq_add_dev_symlink(unsigned int cpu, struct cpufreq_policy *policy) ...@@ -869,8 +871,9 @@ int cpufreq_add_dev_symlink(unsigned int cpu, struct cpufreq_policy *policy)
return ret; return ret;
} }
int cpufreq_add_dev_interface(unsigned int cpu, struct cpufreq_policy *policy, static int cpufreq_add_dev_interface(unsigned int cpu,
struct sys_device *sys_dev) struct cpufreq_policy *policy,
struct sys_device *sys_dev)
{ {
struct cpufreq_policy new_policy; struct cpufreq_policy new_policy;
struct freq_attr **drv_attr; struct freq_attr **drv_attr;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册