Deleted Added
full compact
utglobal.c (123315) utglobal.c (126372)
1/******************************************************************************
2 *
3 * Module Name: utglobal - Global variables for the ACPI subsystem
1/******************************************************************************
2 *
3 * Module Name: utglobal - Global variables for the ACPI subsystem
4 * $Revision: 191 $
4 * $Revision: 193 $
5 *
6 *****************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
5 *
6 *****************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2003, Intel Corp.
12 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.
13 * All rights reserved.
14 *
15 * 2. License
16 *
17 * 2.1. This is your license from Intel Corp. under its intellectual property
18 * rights. You may have additional license terms from the party that provided
19 * you this software, covering your right to use that party's intellectual
20 * property rights.

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

246UINT32 AcpiGbl_StartupFlags = 0;
247
248/* System starts uninitialized */
249
250BOOLEAN AcpiGbl_Shutdown = TRUE;
251
252const UINT8 AcpiGbl_DecodeTo8bit [8] = {1,2,4,8,16,32,64,128};
253
13 * All rights reserved.
14 *
15 * 2. License
16 *
17 * 2.1. This is your license from Intel Corp. under its intellectual property
18 * rights. You may have additional license terms from the party that provided
19 * you this software, covering your right to use that party's intellectual
20 * property rights.

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

246UINT32 AcpiGbl_StartupFlags = 0;
247
248/* System starts uninitialized */
249
250BOOLEAN AcpiGbl_Shutdown = TRUE;
251
252const UINT8 AcpiGbl_DecodeTo8bit [8] = {1,2,4,8,16,32,64,128};
253
254const char *AcpiGbl_DbSleepStates[ACPI_S_STATE_COUNT] = {
254const char *AcpiGbl_SleepStateNames[ACPI_S_STATE_COUNT] = {
255 "\\_S0_",
256 "\\_S1_",
257 "\\_S2_",
258 "\\_S3_",
259 "\\_S4_",
260 "\\_S5_"};
261
255 "\\_S0_",
256 "\\_S1_",
257 "\\_S2_",
258 "\\_S3_",
259 "\\_S4_",
260 "\\_S5_"};
261
262const char *AcpiGbl_HighestDstateNames[4] = {
263 "_S1D",
264 "_S2D",
265 "_S3D",
266 "_S4D"};
262
263/******************************************************************************
264 *
265 * Namespace globals
266 *
267 ******************************************************************************/
268
269

--- 700 unchanged lines hidden ---
267
268/******************************************************************************
269 *
270 * Namespace globals
271 *
272 ******************************************************************************/
273
274

--- 700 unchanged lines hidden ---