diff options
author | Bob Moore <robert.moore@intel.com> | 2011-02-14 02:52:56 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2011-03-02 19:38:04 -0500 |
commit | 1b74dfb2f735454031584dc8162f8f27aa5265bf (patch) | |
tree | 54a77928d2a213904d7da9157cfdf419c0ca60d2 /drivers/acpi | |
parent | 64b3db22c04586997ab4be46dd5a5b99f8a2d390 (diff) |
ACPICA: Clarify a couple of error messages
Clarify region error messages with ID= prefix for space id.
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')
-rw-r--r-- | drivers/acpi/acpica/exfldio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/exfldio.c b/drivers/acpi/acpica/exfldio.c index 6c79c29f082d..f915a7f3f921 100644 --- a/drivers/acpi/acpica/exfldio.c +++ b/drivers/acpi/acpica/exfldio.c | |||
@@ -280,13 +280,13 @@ acpi_ex_access_region(union acpi_operand_object *obj_desc, | |||
280 | if (ACPI_FAILURE(status)) { | 280 | if (ACPI_FAILURE(status)) { |
281 | if (status == AE_NOT_IMPLEMENTED) { | 281 | if (status == AE_NOT_IMPLEMENTED) { |
282 | ACPI_ERROR((AE_INFO, | 282 | ACPI_ERROR((AE_INFO, |
283 | "Region %s(0x%X) not implemented", | 283 | "Region %s (ID=%u) not implemented", |
284 | acpi_ut_get_region_name(rgn_desc->region. | 284 | acpi_ut_get_region_name(rgn_desc->region. |
285 | space_id), | 285 | space_id), |
286 | rgn_desc->region.space_id)); | 286 | rgn_desc->region.space_id)); |
287 | } else if (status == AE_NOT_EXIST) { | 287 | } else if (status == AE_NOT_EXIST) { |
288 | ACPI_ERROR((AE_INFO, | 288 | ACPI_ERROR((AE_INFO, |
289 | "Region %s(0x%X) has no handler", | 289 | "Region %s (ID=%u) has no handler", |
290 | acpi_ut_get_region_name(rgn_desc->region. | 290 | acpi_ut_get_region_name(rgn_desc->region. |
291 | space_id), | 291 | space_id), |
292 | rgn_desc->region.space_id)); | 292 | rgn_desc->region.space_id)); |