Subject: [PATCH] [acpi thermal] Add Kconfig file for new-school driver - Create drivers/acpi/drivers/thermal/ - Fill in Kconfig file - Include it from base ACPI driver Kconfig Signed-off-by: Patrick Mochel --- drivers/acpi/drivers/Kconfig | 1 + drivers/acpi/drivers/thermal/Kconfig | 9 +++++++++ 2 files changed, 10 insertions(+), 0 deletions(-) create mode 100644 drivers/acpi/drivers/thermal/Kconfig applies-to: 4f4f8035711b11455e867eaac21b834b0944048f b29566434a8a6818a5e85ce651cde0c7be411b46 diff --git a/drivers/acpi/drivers/Kconfig b/drivers/acpi/drivers/Kconfig index 7567322..f820135 100644 --- a/drivers/acpi/drivers/Kconfig +++ b/drivers/acpi/drivers/Kconfig @@ -99,6 +99,7 @@ source drivers/acpi/drivers/battery/Kcon source drivers/acpi/drivers/button/Kconfig source drivers/acpi/drivers/fan/Kconfig source drivers/acpi/drivers/power/Kconfig +source drivers/acpi/drivers/thermal/Kconfig endif # ACPI_DM diff --git a/drivers/acpi/drivers/thermal/Kconfig b/drivers/acpi/drivers/thermal/Kconfig new file mode 100644 index 0000000..d72c5dd --- /dev/null +++ b/drivers/acpi/drivers/thermal/Kconfig @@ -0,0 +1,9 @@ +config ACPI_THERMAL + tristate "Thermal Zone" + depends on ACPI_DM && ACPI_PROCESSOR + default y + help + This driver adds support for ACPI thermal zones. Most mobile and + some desktop systems support ACPI thermal zones. It is HIGHLY + recommended that this option be enabled, as your processor(s) + may be damaged without it. --- 0.99.9.GIT