diff options
author | Len Brown <len.brown@intel.com> | 2007-07-24 01:50:46 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-07-24 01:50:46 -0400 |
commit | fb804714560463534ebcb538a3b0a3c687a830ec (patch) | |
tree | 08167336b130298ed09d92ed6ae9e025ff58cce4 /drivers/acpi/Kconfig | |
parent | f695baf2df9e0413d3521661070103711545207a (diff) |
ACPI: Kconfig: CONFIG_ACPI_PROCFS now defaults to N
delete "default y" from CONFIG_ACPI_PROCFS
(effectively making the default 'N')
List exactly what /proc files this option controls,
and clarify that it doesn't change non-deprecated files.
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/Kconfig')
-rw-r--r-- | drivers/acpi/Kconfig | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig index 408b45168aba..8e42977c6d07 100644 --- a/drivers/acpi/Kconfig +++ b/drivers/acpi/Kconfig | |||
@@ -76,17 +76,24 @@ config ACPI_SLEEP_PROC_SLEEP | |||
76 | Deprecated by /sys/power/state | 76 | Deprecated by /sys/power/state |
77 | 77 | ||
78 | config ACPI_PROCFS | 78 | config ACPI_PROCFS |
79 | bool "Procfs interface (deprecated)" | 79 | bool "Deprecated /proc/acpi files" |
80 | default y | 80 | depends on PROC_FS |
81 | ---help--- | 81 | ---help--- |
82 | The Procfs interface for ACPI is made optional for backward compatibility. | 82 | For backwards compatibility, this option allows |
83 | As the same functions are duplicated in the sysfs interface | 83 | depricated /proc/acpi/ files to exist, even when |
84 | and this proc interface will be removed some time later, | 84 | they have been replaced by functions in /sys. |
85 | it's marked as deprecated. | 85 | The deprecated files (and their replacements) include: |
86 | ( /proc/acpi/debug_layer && debug_level are deprecated by | 86 | |
87 | /sys/module/acpi/parameters/debug_layer && debug_level. | 87 | /proc/acpi/info (/sys/modules/acpi/parameters/acpica_version) |
88 | /proc/acpi/info is deprecated by | 88 | /proc/acpi/dsdt (/sys/firmware/acpi/tables/DSDT) |
89 | /sys/module/acpi/parameters/acpica_version ) | 89 | /proc/acpi/fadt (/sys/firmware/acpi/tables/FACP) |
90 | /proc/acpi/debug_layer (/sys/module/acpi/parameters/debug_layer) | ||
91 | /proc/acpi/debug_level (/sys/module/acpi/parameters/debug_level) | ||
92 | |||
93 | This option has no effect on /proc/acpi/ files | ||
94 | and functions which do not yet exist in /sys. | ||
95 | |||
96 | Say N to delete /proc/acpi/ files that have moved to /sys/ | ||
90 | 97 | ||
91 | config ACPI_AC | 98 | config ACPI_AC |
92 | tristate "AC Adapter" | 99 | tristate "AC Adapter" |