diff options
-rw-r--r-- | Documentation/kernel-parameters.txt | 3 | ||||
-rw-r--r-- | drivers/acpi/thermal.c | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index a326487a3ab5..de3300c9056a 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt | |||
@@ -1820,6 +1820,9 @@ and is between 256 and 4096 characters. It is defined in the file | |||
1820 | thash_entries= [KNL,NET] | 1820 | thash_entries= [KNL,NET] |
1821 | Set number of hash buckets for TCP connection | 1821 | Set number of hash buckets for TCP connection |
1822 | 1822 | ||
1823 | thermal.off= [HW,ACPI] | ||
1824 | 1: disable ACPI thermal control | ||
1825 | |||
1823 | time Show timing data prefixed to each printk message line | 1826 | time Show timing data prefixed to each printk message line |
1824 | [deprecated, see 'printk.time'] | 1827 | [deprecated, see 'printk.time'] |
1825 | 1828 | ||
diff --git a/drivers/acpi/thermal.c b/drivers/acpi/thermal.c index 5a62de1b7f2a..61337d969d7f 100644 --- a/drivers/acpi/thermal.c +++ b/drivers/acpi/thermal.c | |||
@@ -78,6 +78,10 @@ static int tzp; | |||
78 | module_param(tzp, int, 0); | 78 | module_param(tzp, int, 0); |
79 | MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.\n"); | 79 | MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.\n"); |
80 | 80 | ||
81 | static int off; | ||
82 | module_param(off, int, 0); | ||
83 | MODULE_PARM_DESC(off, "Set to disable ACPI thermal support.\n"); | ||
84 | |||
81 | static int acpi_thermal_add(struct acpi_device *device); | 85 | static int acpi_thermal_add(struct acpi_device *device); |
82 | static int acpi_thermal_remove(struct acpi_device *device, int type); | 86 | static int acpi_thermal_remove(struct acpi_device *device, int type); |
83 | static int acpi_thermal_resume(struct acpi_device *device); | 87 | static int acpi_thermal_resume(struct acpi_device *device); |
@@ -1285,7 +1289,10 @@ static int __init acpi_thermal_init(void) | |||
1285 | { | 1289 | { |
1286 | int result = 0; | 1290 | int result = 0; |
1287 | 1291 | ||
1288 | 1292 | if (off) { | |
1293 | printk(KERN_NOTICE "ACPI: thermal control disabled\n"); | ||
1294 | return -ENODEV; | ||
1295 | } | ||
1289 | acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir); | 1296 | acpi_thermal_dir = proc_mkdir(ACPI_THERMAL_CLASS, acpi_root_dir); |
1290 | if (!acpi_thermal_dir) | 1297 | if (!acpi_thermal_dir) |
1291 | return -ENODEV; | 1298 | return -ENODEV; |