aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/thermal.c
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>2007-08-24 05:45:50 -0400
committerLen Brown <len.brown@intel.com>2007-08-24 18:02:13 -0400
commit2db9ccba8d4bb8e3aa6d0cd8e7544c5736963bbc (patch)
treef58aafbc5a011874d1887f5942523e0e90c020ac /drivers/acpi/thermal.c
parent8c99fdce30787b0d1fc00b907d4cd55a714e4cdd (diff)
ACPI: /proc/acpi/thermal_zone trip points are now read-only, mark them as such
Signed-off-by: Pavel Machek <pavel@suse.cz> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/thermal.c')
-rw-r--r--drivers/acpi/thermal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/thermal.c b/drivers/acpi/thermal.c
index 39479b0befa4..7e8f48b7f9af 100644
--- a/drivers/acpi/thermal.c
+++ b/drivers/acpi/thermal.c
@@ -1085,9 +1085,9 @@ static int acpi_thermal_add_fs(struct acpi_device *device)
1085 entry->owner = THIS_MODULE; 1085 entry->owner = THIS_MODULE;
1086 } 1086 }
1087 1087
1088 /* 'trip_points' [R/W] */ 1088 /* 'trip_points' [R] */
1089 entry = create_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS, 1089 entry = create_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS,
1090 S_IFREG | S_IRUGO | S_IWUSR, 1090 S_IRUGO,
1091 acpi_device_dir(device)); 1091 acpi_device_dir(device));
1092 if (!entry) 1092 if (!entry)
1093 return -ENODEV; 1093 return -ENODEV;