diff options
author | Bob Moore <robert.moore@intel.com> | 2010-03-05 04:56:40 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-04-20 10:42:52 -0400 |
commit | f6a22b0bc417042e83117f52ab1a03696af185ab (patch) | |
tree | 0d03a22c27c592338629f2af67e7b2b9a8521b01 /drivers/acpi/acpica/evgpeblk.c | |
parent | 0e264f0bc22207b99f33ee06e614186480682f15 (diff) |
ACPICA: Standardize integer output for ACPICA warnings/errors
Always use 0x prefix for hex output, use %u for integer output
(all integers are unsigned.)
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/evgpeblk.c')
-rw-r--r-- | drivers/acpi/acpica/evgpeblk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/evgpeblk.c b/drivers/acpi/acpica/evgpeblk.c index fef721917eaf..fa47e3522abe 100644 --- a/drivers/acpi/acpica/evgpeblk.c +++ b/drivers/acpi/acpica/evgpeblk.c | |||
@@ -1139,8 +1139,8 @@ acpi_status acpi_ev_gpe_initialize(void) | |||
1139 | if ((register_count0) && | 1139 | if ((register_count0) && |
1140 | (gpe_number_max >= acpi_gbl_FADT.gpe1_base)) { | 1140 | (gpe_number_max >= acpi_gbl_FADT.gpe1_base)) { |
1141 | ACPI_ERROR((AE_INFO, | 1141 | ACPI_ERROR((AE_INFO, |
1142 | "GPE0 block (GPE 0 to %d) overlaps the GPE1 block " | 1142 | "GPE0 block (GPE 0 to %u) overlaps the GPE1 block " |
1143 | "(GPE %d to %d) - Ignoring GPE1", | 1143 | "(GPE %u to %u) - Ignoring GPE1", |
1144 | gpe_number_max, acpi_gbl_FADT.gpe1_base, | 1144 | gpe_number_max, acpi_gbl_FADT.gpe1_base, |
1145 | acpi_gbl_FADT.gpe1_base + | 1145 | acpi_gbl_FADT.gpe1_base + |
1146 | ((register_count1 * | 1146 | ((register_count1 * |