Deleted Added
full compact
exconfig.c (245582) exconfig.c (249663)
1/******************************************************************************
2 *
3 * Module Name: exconfig - Namespace reconfiguration (Load/Unload opcodes)
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2013, Intel Corp.

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

638 * DdbHandle must still be marked valid (table has not been previously
639 * unloaded)
640 */
641 if ((!DdbHandle) ||
642 (ACPI_GET_DESCRIPTOR_TYPE (DdbHandle) != ACPI_DESC_TYPE_OPERAND) ||
643 (DdbHandle->Common.Type != ACPI_TYPE_LOCAL_REFERENCE) ||
644 (!(DdbHandle->Common.Flags & AOPOBJ_DATA_VALID)))
645 {
1/******************************************************************************
2 *
3 * Module Name: exconfig - Namespace reconfiguration (Load/Unload opcodes)
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2013, Intel Corp.

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

638 * DdbHandle must still be marked valid (table has not been previously
639 * unloaded)
640 */
641 if ((!DdbHandle) ||
642 (ACPI_GET_DESCRIPTOR_TYPE (DdbHandle) != ACPI_DESC_TYPE_OPERAND) ||
643 (DdbHandle->Common.Type != ACPI_TYPE_LOCAL_REFERENCE) ||
644 (!(DdbHandle->Common.Flags & AOPOBJ_DATA_VALID)))
645 {
646 return_ACPI_STATUS (AE_BAD_PARAMETER);
646 return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
647 }
648
649 /* Get the table index from the DdbHandle */
650
651 TableIndex = TableDesc->Reference.Value;
652
653 /* Ensure the table is still loaded */
654

--- 35 unchanged lines hidden ---
647 }
648
649 /* Get the table index from the DdbHandle */
650
651 TableIndex = TableDesc->Reference.Value;
652
653 /* Ensure the table is still loaded */
654

--- 35 unchanged lines hidden ---