utmisc.c (cb5629b10d64a8006622ce3a52bc887d91057d69) utmisc.c (3371c19c294a4cb3649aa4e84606be8a1d999e61)
1/*******************************************************************************
2 *
3 * Module Name: utmisc - common utility procedures
4 *
5 ******************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2008, Intel Corp.

--- 924 unchanged lines hidden (view full) ---

933 * legal to declare a package and leave it uninitialized
934 * 2) Not an internal object - can be a namespace node instead
935 * 3) Any type other than a package. Packages are handled in else
936 * case below.
937 */
938 if ((!this_source_obj) ||
939 (ACPI_GET_DESCRIPTOR_TYPE(this_source_obj) !=
940 ACPI_DESC_TYPE_OPERAND)
1/*******************************************************************************
2 *
3 * Module Name: utmisc - common utility procedures
4 *
5 ******************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2008, Intel Corp.

--- 924 unchanged lines hidden (view full) ---

933 * legal to declare a package and leave it uninitialized
934 * 2) Not an internal object - can be a namespace node instead
935 * 3) Any type other than a package. Packages are handled in else
936 * case below.
937 */
938 if ((!this_source_obj) ||
939 (ACPI_GET_DESCRIPTOR_TYPE(this_source_obj) !=
940 ACPI_DESC_TYPE_OPERAND)
941 || (ACPI_GET_OBJECT_TYPE(this_source_obj) !=
942 ACPI_TYPE_PACKAGE)) {
941 || (this_source_obj->common.type != ACPI_TYPE_PACKAGE)) {
943 status =
944 walk_callback(ACPI_COPY_TYPE_SIMPLE,
945 this_source_obj, state, context);
946 if (ACPI_FAILURE(status)) {
947 return_ACPI_STATUS(status);
948 }
949
950 state->pkg.index++;

--- 143 unchanged lines hidden ---
942 status =
943 walk_callback(ACPI_COPY_TYPE_SIMPLE,
944 this_source_obj, state, context);
945 if (ACPI_FAILURE(status)) {
946 return_ACPI_STATUS(status);
947 }
948
949 state->pkg.index++;

--- 143 unchanged lines hidden ---