diff options
author | Bob Moore <robert.moore@intel.com> | 2007-02-02 11:48:19 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-02-02 21:14:23 -0500 |
commit | 3d81b236a82a26fa8bdef9096829675d81890dc9 (patch) | |
tree | 6953c1fa67f04f3af48d69abca4e53202d20df32 /drivers/acpi/utilities/utglobal.c | |
parent | c5a7156959e89b32260ad6072bbf5077bcdfbeee (diff) |
ACPICA: Fix unalignment in acpi_ut_repair_name
Update interface to acpi_ut_repair_name() to avoid
alignment issues on IA64
Signed-off-by: Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/utilities/utglobal.c')
-rw-r--r-- | drivers/acpi/utilities/utglobal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/utilities/utglobal.c b/drivers/acpi/utilities/utglobal.c index a524e75b7ae4..855bc8fea3a4 100644 --- a/drivers/acpi/utilities/utglobal.c +++ b/drivers/acpi/utilities/utglobal.c | |||
@@ -566,7 +566,7 @@ char *acpi_ut_get_node_name(void *object) | |||
566 | /* Name must be a valid ACPI name */ | 566 | /* Name must be a valid ACPI name */ |
567 | 567 | ||
568 | if (!acpi_ut_valid_acpi_name(node->name.integer)) { | 568 | if (!acpi_ut_valid_acpi_name(node->name.integer)) { |
569 | node->name.integer = acpi_ut_repair_name(node->name.integer); | 569 | node->name.integer = acpi_ut_repair_name(node->name.ascii); |
570 | } | 570 | } |
571 | 571 | ||
572 | /* Return the name */ | 572 | /* Return the name */ |