Deleted Added
full compact
rsutils.c (245582) rsutils.c (249663)
1/*******************************************************************************
2 *
3 * Module Name: rsutils - Utilities for the resource manager
4 *
5 ******************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2013, Intel Corp.

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

805
806 Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
807 if (!Info)
808 {
809 return_ACPI_STATUS (AE_NO_MEMORY);
810 }
811
812 Info->PrefixNode = Node;
1/*******************************************************************************
2 *
3 * Module Name: rsutils - Utilities for the resource manager
4 *
5 ******************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2013, Intel Corp.

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

805
806 Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
807 if (!Info)
808 {
809 return_ACPI_STATUS (AE_NO_MEMORY);
810 }
811
812 Info->PrefixNode = Node;
813 Info->Pathname = METHOD_NAME__SRS;
813 Info->RelativePathname = METHOD_NAME__SRS;
814 Info->Parameters = Args;
815 Info->Flags = ACPI_IGNORE_RETURN_VALUE;
816
817 /*
818 * The InBuffer parameter will point to a linked list of
819 * resource parameters. It needs to be formatted into a
820 * byte stream to be sent in as an input parameter to _SRS
821 *

--- 40 unchanged lines hidden ---
814 Info->Parameters = Args;
815 Info->Flags = ACPI_IGNORE_RETURN_VALUE;
816
817 /*
818 * The InBuffer parameter will point to a linked list of
819 * resource parameters. It needs to be formatted into a
820 * byte stream to be sent in as an input parameter to _SRS
821 *

--- 40 unchanged lines hidden ---