Deleted Added
full compact
rslist.c (241973) rslist.c (243347)
1/*******************************************************************************
2 *
3 * Module Name: rslist - Linked list utilities
4 *
5 ******************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2012, Intel Corp.

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

236 ACPI_EXCEPTION ((AE_INFO, Status,
237 "Could not convert resource (type 0x%X) to AML",
238 Resource->Type));
239 return_ACPI_STATUS (Status);
240 }
241
242 /* Perform final sanity check on the new AML resource descriptor */
243
1/*******************************************************************************
2 *
3 * Module Name: rslist - Linked list utilities
4 *
5 ******************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2012, Intel Corp.

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

236 ACPI_EXCEPTION ((AE_INFO, Status,
237 "Could not convert resource (type 0x%X) to AML",
238 Resource->Type));
239 return_ACPI_STATUS (Status);
240 }
241
242 /* Perform final sanity check on the new AML resource descriptor */
243
244 Status = AcpiUtValidateResource (
244 Status = AcpiUtValidateResource (NULL,
245 ACPI_CAST_PTR (AML_RESOURCE, Aml), NULL);
246 if (ACPI_FAILURE (Status))
247 {
248 return_ACPI_STATUS (Status);
249 }
250
251 /* Check for end-of-list, normal exit */
252

--- 22 unchanged lines hidden ---
245 ACPI_CAST_PTR (AML_RESOURCE, Aml), NULL);
246 if (ACPI_FAILURE (Status))
247 {
248 return_ACPI_STATUS (Status);
249 }
250
251 /* Check for end-of-list, normal exit */
252

--- 22 unchanged lines hidden ---