[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1420911941-21968-1-git-send-email-nli@suse.com>
Date: Sun, 11 Jan 2015 01:45:41 +0800
From: Nan Li <nli@...e.com>
To: lenb@...nel.org
Cc: linux-kernel@...r.kernel.org, Nan Li <nli@...e.com>
Subject: [PATCH] The count field of counter_show() function should be an unsigned value
The count field is an unsigned 32bit value, and the
counter_show() function should also treat it as a unsigned
value.
Signed-off-by: Nan Li <nli@...e.com>
---
drivers/acpi/sysfs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/acpi/sysfs.c b/drivers/acpi/sysfs.c
index 13e577c..0876d77 100644
--- a/drivers/acpi/sysfs.c
+++ b/drivers/acpi/sysfs.c
@@ -527,7 +527,7 @@ static ssize_t counter_show(struct kobject *kobj,
acpi_irq_not_handled;
all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_GPE].count =
acpi_gpe_count;
- size = sprintf(buf, "%8d", all_counters[index].count);
+ size = sprintf(buf, "%8u", all_counters[index].count);
/* "gpe_all" or "sci" */
if (index >= num_gpes + ACPI_NUM_FIXED_EVENTS)
--
1.7.12.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists