ACPICA: Update for 64-bit generation of recent error message changes
authorBob Moore <robert.moore@intel.com>
Wed, 31 Oct 2012 02:28:27 +0000 (02:28 +0000)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 14 Nov 2012 23:31:30 +0000 (00:31 +0100)
Fix for errors on printf changes on 64-bit platforms and gcc.

Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/acpica/psloop.c

index d48c8fc..5607805 100644 (file)
@@ -139,8 +139,8 @@ static acpi_status acpi_ps_get_aml_opcode(struct acpi_walk_state *walk_state)
                        ACPI_ERROR((AE_INFO,
                                    "Unknown opcode 0x%.2X at table offset 0x%.4X, ignoring",
                                    walk_state->opcode,
-                                   walk_state->aml_offset +
-                                   sizeof(struct acpi_table_header)));
+                                   (u32)(walk_state->aml_offset +
+                                         sizeof(struct acpi_table_header))));
 
                        ACPI_DUMP_BUFFER(walk_state->parser_state.aml - 16, 48);
 
@@ -152,8 +152,8 @@ static acpi_status acpi_ps_get_aml_opcode(struct acpi_walk_state *walk_state)
                        acpi_os_printf
                            ("/*\nError: Unknown opcode 0x%.2X at table offset 0x%.4X, context:\n",
                             walk_state->opcode,
-                            walk_state->aml_offset +
-                            sizeof(struct acpi_table_header));
+                            (u32)(walk_state->aml_offset +
+                                  sizeof(struct acpi_table_header)));
 
                        /* Dump the context surrounding the invalid opcode */