2009-10-16 09:46:45

by Amit Kucheria

[permalink] [raw]
Subject: [PATCH] acpi: thermal: [TRIVIAL] Add EOL to the trip_point_N_type strings

From: Amit Kucheria <[email protected]>

Make the trip_point_N_type sysfs files return a string ending in EOL for
consistency with other sysfs files.

Signed-off-by: Amit Kucheria <[email protected]>
---
drivers/thermal/thermal_sys.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/thermal/thermal_sys.c b/drivers/thermal/thermal_sys.c
index 4e83c29..6f8d8f9 100644
--- a/drivers/thermal/thermal_sys.c
+++ b/drivers/thermal/thermal_sys.c
@@ -180,15 +180,15 @@ trip_point_type_show(struct device *dev, struct device_attribute *attr,

switch (type) {
case THERMAL_TRIP_CRITICAL:
- return sprintf(buf, "critical");
+ return sprintf(buf, "critical\n");
case THERMAL_TRIP_HOT:
- return sprintf(buf, "hot");
+ return sprintf(buf, "hot\n");
case THERMAL_TRIP_PASSIVE:
- return sprintf(buf, "passive");
+ return sprintf(buf, "passive\n");
case THERMAL_TRIP_ACTIVE:
- return sprintf(buf, "active");
+ return sprintf(buf, "active\n");
default:
- return sprintf(buf, "unknown");
+ return sprintf(buf, "unknown\n");
}
}

--
1.6.3.3


2009-11-05 22:34:10

by Len Brown

[permalink] [raw]
Subject: Re: [PATCH] acpi: thermal: [TRIVIAL] Add EOL to the trip_point_N_type strings

applied

thanks,
Len Brown, Intel Open Source Technology Center