From: Pavel Machek Date: Fri, 24 Aug 2007 09:45:50 +0000 (+0200) Subject: ACPI: /proc/acpi/thermal_zone trip points are now read-only, mark them as such X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2db9ccba8d4bb8e3aa6d0cd8e7544c5736963bbc;p=linux-beck.git ACPI: /proc/acpi/thermal_zone trip points are now read-only, mark them as such Signed-off-by: Pavel Machek Signed-off-by: Len Brown --- 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) entry->owner = THIS_MODULE; } - /* 'trip_points' [R/W] */ + /* 'trip_points' [R] */ entry = create_proc_entry(ACPI_THERMAL_FILE_TRIP_POINTS, - S_IFREG | S_IRUGO | S_IWUSR, + S_IRUGO, acpi_device_dir(device)); if (!entry) return -ENODEV;