Deleted Added
full compact
utglobal.c (218590) utglobal.c (229989)
1/******************************************************************************
2 *
3 * Module Name: utglobal - Global variables for the ACPI subsystem
4 *
5 *****************************************************************************/
6
7/*
1/******************************************************************************
2 *
3 * Module Name: utglobal - Global variables for the ACPI subsystem
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2011, Intel Corp.
8 * Copyright (C) 2000 - 2012, Intel Corp.
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.

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

228 /* Create all memory caches */
229
230 Status = AcpiUtCreateCaches ();
231 if (ACPI_FAILURE (Status))
232 {
233 return_ACPI_STATUS (Status);
234 }
235
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.

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

228 /* Create all memory caches */
229
230 Status = AcpiUtCreateCaches ();
231 if (ACPI_FAILURE (Status))
232 {
233 return_ACPI_STATUS (Status);
234 }
235
236 /* Address Range lists */
237
238 for (i = 0; i < ACPI_ADDRESS_RANGE_MAX; i++)
239 {
240 AcpiGbl_AddressRangeList[i] = NULL;
241 }
242
236 /* Mutex locked flags */
237
238 for (i = 0; i < ACPI_NUM_MUTEX; i++)
239 {
240 AcpiGbl_MutexInfo[i].Mutex = NULL;
241 AcpiGbl_MutexInfo[i].ThreadId = ACPI_MUTEX_NOT_ACQUIRED;
242 AcpiGbl_MutexInfo[i].UseCount = 0;
243 }

--- 108 unchanged lines hidden ---
243 /* Mutex locked flags */
244
245 for (i = 0; i < ACPI_NUM_MUTEX; i++)
246 {
247 AcpiGbl_MutexInfo[i].Mutex = NULL;
248 AcpiGbl_MutexInfo[i].ThreadId = ACPI_MUTEX_NOT_ACQUIRED;
249 AcpiGbl_MutexInfo[i].UseCount = 0;
250 }

--- 108 unchanged lines hidden ---