diff options
| -rw-r--r-- | drivers/acpi/thermal.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/acpi/thermal.c b/drivers/acpi/thermal.c index 1e06159fd9c4..9b31f36481d2 100644 --- a/drivers/acpi/thermal.c +++ b/drivers/acpi/thermal.c | |||
| @@ -77,23 +77,23 @@ MODULE_LICENSE("GPL"); | |||
| 77 | 77 | ||
| 78 | static int act; | 78 | static int act; |
| 79 | module_param(act, int, 0644); | 79 | module_param(act, int, 0644); |
| 80 | MODULE_PARM_DESC(act, "Disable or override all lowest active trip points.\n"); | 80 | MODULE_PARM_DESC(act, "Disable or override all lowest active trip points."); |
| 81 | 81 | ||
| 82 | static int tzp; | 82 | static int tzp; |
| 83 | module_param(tzp, int, 0444); | 83 | module_param(tzp, int, 0444); |
| 84 | MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.\n"); | 84 | MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds."); |
| 85 | 85 | ||
| 86 | static int nocrt; | 86 | static int nocrt; |
| 87 | module_param(nocrt, int, 0); | 87 | module_param(nocrt, int, 0); |
| 88 | MODULE_PARM_DESC(nocrt, "Set to disable action on ACPI thermal zone critical and hot trips.\n"); | 88 | MODULE_PARM_DESC(nocrt, "Set to disable action on ACPI thermal zone critical and hot trips."); |
| 89 | 89 | ||
| 90 | static int off; | 90 | static int off; |
| 91 | module_param(off, int, 0); | 91 | module_param(off, int, 0); |
| 92 | MODULE_PARM_DESC(off, "Set to disable ACPI thermal support.\n"); | 92 | MODULE_PARM_DESC(off, "Set to disable ACPI thermal support."); |
| 93 | 93 | ||
| 94 | static int psv; | 94 | static int psv; |
| 95 | module_param(psv, int, 0644); | 95 | module_param(psv, int, 0644); |
| 96 | MODULE_PARM_DESC(psv, "Disable or override all passive trip points.\n"); | 96 | MODULE_PARM_DESC(psv, "Disable or override all passive trip points."); |
| 97 | 97 | ||
| 98 | static int acpi_thermal_add(struct acpi_device *device); | 98 | static int acpi_thermal_add(struct acpi_device *device); |
| 99 | static int acpi_thermal_remove(struct acpi_device *device, int type); | 99 | static int acpi_thermal_remove(struct acpi_device *device, int type); |
