diff options
author | Bob Moore <robert.moore@intel.com> | 2011-11-27 21:10:10 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-01-17 03:36:26 -0500 |
commit | 46dfb09c024a1a92ead63b40f6993dcb5eb7d153 (patch) | |
tree | eac5ef31308e253a634002824598cfa848facd96 /drivers/acpi/acpica | |
parent | 8519bc9f1e6db43a9b95b70ef0c7b61cb36d58e4 (diff) |
ACPICA: Add error msg for Index/Bank field registers out-of-range
Supplement the exception code with an actual message.
Found during ACPICA debugging.
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')
-rw-r--r-- | drivers/acpi/acpica/exfldio.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/acpi/acpica/exfldio.c b/drivers/acpi/acpica/exfldio.c index f915a7f3f921..19df8ce66ee7 100644 --- a/drivers/acpi/acpica/exfldio.c +++ b/drivers/acpi/acpica/exfldio.c | |||
@@ -316,6 +316,7 @@ acpi_ex_access_region(union acpi_operand_object *obj_desc, | |||
316 | static u8 | 316 | static u8 |
317 | acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value) | 317 | acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value) |
318 | { | 318 | { |
319 | ACPI_FUNCTION_NAME(ex_register_overflow); | ||
319 | 320 | ||
320 | if (obj_desc->common_field.bit_length >= ACPI_INTEGER_BIT_SIZE) { | 321 | if (obj_desc->common_field.bit_length >= ACPI_INTEGER_BIT_SIZE) { |
321 | /* | 322 | /* |
@@ -330,6 +331,11 @@ acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value) | |||
330 | * The Value is larger than the maximum value that can fit into | 331 | * The Value is larger than the maximum value that can fit into |
331 | * the register. | 332 | * the register. |
332 | */ | 333 | */ |
334 | ACPI_ERROR((AE_INFO, | ||
335 | "Index value 0x%8.8X%8.8X overflows field width 0x%X", | ||
336 | ACPI_FORMAT_UINT64(value), | ||
337 | obj_desc->common_field.bit_length)); | ||
338 | |||
333 | return (TRUE); | 339 | return (TRUE); |
334 | } | 340 | } |
335 | 341 | ||