diff options
author | Naga Chumbalkar <nagananda.chumbalkar@hp.com> | 2011-02-02 18:26:58 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2011-03-23 01:34:15 -0400 |
commit | 32297abd90a5d181e8e026c8b8e65ef41e9ffc07 (patch) | |
tree | bab8d21b47e264f7a08da3babf36fbef03c95530 /drivers/acpi/acpi_pad.c | |
parent | af10f941ab7807d8b0bb3c66e679d8a6bbbe7485 (diff) |
ACPI: make acpi_pad /sys output more readable
Make /sys output from acpi_pad more readable.
Before the fix:
# cat idlecpus idlepct rrtime
00000000510
After the fix:
# cat idlecpus idlepct rrtime
00000000
5
10
Signed-off-by: Naga Chumbalkar <nagananda.chumbalkar@hp.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/acpi_pad.c')
-rw-r--r-- | drivers/acpi/acpi_pad.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/drivers/acpi/acpi_pad.c b/drivers/acpi/acpi_pad.c index 6afceb3d4034..474be3a198ed 100644 --- a/drivers/acpi/acpi_pad.c +++ b/drivers/acpi/acpi_pad.c | |||
@@ -298,7 +298,7 @@ static ssize_t acpi_pad_rrtime_store(struct device *dev, | |||
298 | static ssize_t acpi_pad_rrtime_show(struct device *dev, | 298 | static ssize_t acpi_pad_rrtime_show(struct device *dev, |
299 | struct device_attribute *attr, char *buf) | 299 | struct device_attribute *attr, char *buf) |
300 | { | 300 | { |
301 | return scnprintf(buf, PAGE_SIZE, "%d", round_robin_time); | 301 | return scnprintf(buf, PAGE_SIZE, "%d\n", round_robin_time); |
302 | } | 302 | } |
303 | static DEVICE_ATTR(rrtime, S_IRUGO|S_IWUSR, | 303 | static DEVICE_ATTR(rrtime, S_IRUGO|S_IWUSR, |
304 | acpi_pad_rrtime_show, | 304 | acpi_pad_rrtime_show, |
@@ -321,7 +321,7 @@ static ssize_t acpi_pad_idlepct_store(struct device *dev, | |||
321 | static ssize_t acpi_pad_idlepct_show(struct device *dev, | 321 | static ssize_t acpi_pad_idlepct_show(struct device *dev, |
322 | struct device_attribute *attr, char *buf) | 322 | struct device_attribute *attr, char *buf) |
323 | { | 323 | { |
324 | return scnprintf(buf, PAGE_SIZE, "%d", idle_pct); | 324 | return scnprintf(buf, PAGE_SIZE, "%d\n", idle_pct); |
325 | } | 325 | } |
326 | static DEVICE_ATTR(idlepct, S_IRUGO|S_IWUSR, | 326 | static DEVICE_ATTR(idlepct, S_IRUGO|S_IWUSR, |
327 | acpi_pad_idlepct_show, | 327 | acpi_pad_idlepct_show, |
@@ -342,8 +342,11 @@ static ssize_t acpi_pad_idlecpus_store(struct device *dev, | |||
342 | static ssize_t acpi_pad_idlecpus_show(struct device *dev, | 342 | static ssize_t acpi_pad_idlecpus_show(struct device *dev, |
343 | struct device_attribute *attr, char *buf) | 343 | struct device_attribute *attr, char *buf) |
344 | { | 344 | { |
345 | return cpumask_scnprintf(buf, PAGE_SIZE, | 345 | int n = 0; |
346 | to_cpumask(pad_busy_cpus_bits)); | 346 | n = cpumask_scnprintf(buf, PAGE_SIZE-2, to_cpumask(pad_busy_cpus_bits)); |
347 | buf[n++] = '\n'; | ||
348 | buf[n] = '\0'; | ||
349 | return n; | ||
347 | } | 350 | } |
348 | static DEVICE_ATTR(idlecpus, S_IRUGO|S_IWUSR, | 351 | static DEVICE_ATTR(idlecpus, S_IRUGO|S_IWUSR, |
349 | acpi_pad_idlecpus_show, | 352 | acpi_pad_idlecpus_show, |