[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <4B4FB766.1020805@gmail.com>
Date: Fri, 15 Jan 2010 01:31:34 +0100
From: Roel Kluin <roel.kluin@...il.com>
To: Len Brown <lenb@...nel.org>, linux-acpi@...r.kernel.org,
Andrew Morton <akpm@...ux-foundation.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: [PATCH] ACPICA: wrong acpi_parse_state assigned acpi_ps_init_scope()
?
Assign the package end, not the last AML byte.
Signed-off-by: Roel Kluin <roel.kluin@...il.com>
---
Is this right?
diff --git a/drivers/acpi/acpica/psscope.c b/drivers/acpi/acpica/psscope.c
index 2feca5c..a8dfe16 100644
--- a/drivers/acpi/acpica/psscope.c
+++ b/drivers/acpi/acpica/psscope.c
@@ -118,7 +118,7 @@ acpi_ps_init_scope(struct acpi_parse_state * parser_state,
scope->parse_scope.op = root_op;
scope->parse_scope.arg_count = ACPI_VAR_ARGS;
scope->parse_scope.arg_end = parser_state->aml_end;
- scope->parse_scope.pkg_end = parser_state->aml_end;
+ scope->parse_scope.pkg_end = parser_state->pkg_end;
parser_state->scope = scope;
parser_state->start_op = root_op;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists