Subversion Repositories Kolibri OS

Rev

Rev 1498 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1498 Rev 2216
Line 6... Line 6...
6
 
6
 
7
/******************************************************************************
7
/******************************************************************************
8
 *
8
 *
9
 * 1. Copyright Notice
9
 * 1. Copyright Notice
10
 *
10
 *
11
 * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
11
 * Some or all of this work - Copyright (c) 1999 - 2011, Intel Corp.
12
 * All rights reserved.
12
 * All rights reserved.
13
 *
13
 *
14
 * 2. License
14
 * 2. License
15
 *
15
 *
Line 790... Line 790...
790
    ACPI_STATUS             Status;
790
    ACPI_STATUS             Status;
791
    char                    *Path = NULL;
791
    char                    *Path = NULL;
792
    ACPI_PARSE_OBJECT       *NextOp;
792
    ACPI_PARSE_OBJECT       *NextOp;
793
    ACPI_NAMESPACE_NODE     *Node;
793
    ACPI_NAMESPACE_NODE     *Node;
794
    ACPI_OPERAND_OBJECT     *Object;
794
    ACPI_OPERAND_OBJECT     *Object;
-
 
795
    UINT32                  ParamCount = 0;
Line 795... Line 796...
795
 
796
 
796
 
797
 
797
    WalkState = Info->WalkState;
798
    WalkState = Info->WalkState;
Line 878... Line 879...
878
 
879
 
879
        Object = AcpiNsGetAttachedObject (Node);
880
        Object = AcpiNsGetAttachedObject (Node);
880
        if (Object)
881
        if (Object)
881
        {
882
        {
882
            ObjectType2 = Object->Common.Type;
-
 
883
        }
-
 
884
 
883
            ObjectType2 = Object->Common.Type;
885
        if (ObjectType2 == ACPI_TYPE_METHOD)
884
        if (ObjectType2 == ACPI_TYPE_METHOD)
886
        {
-
 
887
            AcpiDmAddToExternalList (Op, Path, ACPI_TYPE_METHOD,
885
        {
888
                Object->Method.ParamCount);
886
                ParamCount = Object->Method.ParamCount;
889
        }
-
 
890
        else
-
 
891
        {
-
 
892
            AcpiDmAddToExternalList (Op, Path, (UINT8) ObjectType2, 0);
887
        }
Line -... Line 888...
-
 
888
        }
893
        }
889
 
894
 
890
        AcpiDmAddToExternalList (Op, Path, (UINT8) ObjectType2, ParamCount);
895
        Op->Common.Node = Node;
891
        Op->Common.Node = Node;
896
    }
892
    }
897
    else
893
    else