Commit d82847ac authored by Bob Moore's avatar Bob Moore Committed by Rafael J. Wysocki

ACPICA: Update error message, no functional change

ACPICA commit 0787fda3b224a78369e26ac6046658beb2b64c12

Clarify error when an attempt is made to evaluate things like
devices, events, etc. -- these objects have no data and cannot
be "evaluated".

Link: https://github.com/acpica/acpica/commit/0787fda3Signed-off-by: default avatarBob Moore <robert.moore@intel.com>
Signed-off-by: default avatarErik Schmauss <erik.schmauss@intel.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent e62f8227
...@@ -187,6 +187,7 @@ acpi_status acpi_ns_evaluate(struct acpi_evaluate_info *info) ...@@ -187,6 +187,7 @@ acpi_status acpi_ns_evaluate(struct acpi_evaluate_info *info)
* 3) The object is not a method -- just return it's current value * 3) The object is not a method -- just return it's current value
*/ */
switch (acpi_ns_get_type(info->node)) { switch (acpi_ns_get_type(info->node)) {
case ACPI_TYPE_ANY:
case ACPI_TYPE_DEVICE: case ACPI_TYPE_DEVICE:
case ACPI_TYPE_EVENT: case ACPI_TYPE_EVENT:
case ACPI_TYPE_MUTEX: case ACPI_TYPE_MUTEX:
...@@ -194,11 +195,12 @@ acpi_status acpi_ns_evaluate(struct acpi_evaluate_info *info) ...@@ -194,11 +195,12 @@ acpi_status acpi_ns_evaluate(struct acpi_evaluate_info *info)
case ACPI_TYPE_THERMAL: case ACPI_TYPE_THERMAL:
case ACPI_TYPE_LOCAL_SCOPE: case ACPI_TYPE_LOCAL_SCOPE:
/* /*
* 1) Disallow evaluation of certain object types. For these, * 1) Disallow evaluation of these object types. For these,
* object evaluation is undefined and not supported. * object evaluation is undefined.
*/ */
ACPI_ERROR((AE_INFO, ACPI_ERROR((AE_INFO,
"%s: Evaluation of object type [%s] is not supported", "%s: This object type [%s] "
"never contains data and cannot be evaluated",
info->full_pathname, info->full_pathname,
acpi_ut_get_type_name(info->node->type))); acpi_ut_get_type_name(info->node->type)));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment