diff options
author | Zhang Rui <rui.zhang@intel.com> | 2010-10-08 13:55:15 +0800 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-10-15 22:03:17 -0400 |
commit | d5c6887c7fbaf7a149c3bf441338fa833c529fb4 (patch) | |
tree | e112c1904cb23d20b87ffe66e075f3635e4a5ce1 /drivers/acpi/processor_throttling.c | |
parent | 39fe394d05be43481ceac8b3db19dfd5189097f6 (diff) | |
download | op-kernel-dev-d5c6887c7fbaf7a149c3bf441338fa833c529fb4.zip op-kernel-dev-d5c6887c7fbaf7a149c3bf441338fa833c529fb4.tar.gz |
ACPI processor: make /proc/acpi/processor/*/throttle depends on CONFIG_ACPI_PROCFS
As a feature that would only be used when system is overheating,
the processor t-state control should not be exported to user space.
Make /proc/acpi/processor/*/throttle depends on CONFIG_ACPI_PROCFS,
which is cleared by default.
And we will remove this I/F in 2.6.38.
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/processor_throttling.c')
-rw-r--r-- | drivers/acpi/processor_throttling.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/acpi/processor_throttling.c b/drivers/acpi/processor_throttling.c index 7308638..ff36327 100644 --- a/drivers/acpi/processor_throttling.c +++ b/drivers/acpi/processor_throttling.c @@ -32,8 +32,10 @@ #include <linux/init.h> #include <linux/sched.h> #include <linux/cpufreq.h> +#ifdef CONFIG_ACPI_PROCFS #include <linux/proc_fs.h> #include <linux/seq_file.h> +#endif #include <asm/io.h> #include <asm/uaccess.h> @@ -1214,6 +1216,7 @@ int acpi_processor_get_throttling_info(struct acpi_processor *pr) return result; } +#ifdef CONFIG_ACPI_PROCFS /* proc interface */ static int acpi_processor_throttling_seq_show(struct seq_file *seq, void *offset) @@ -1322,3 +1325,4 @@ const struct file_operations acpi_processor_throttling_fops = { .llseek = seq_lseek, .release = single_release, }; +#endif |