Deleted Added
full compact
dmrestag.c (193529) dmrestag.c (197104)
1/******************************************************************************
2 *
3 * Module Name: dmrestag - Add tags to resource descriptors (Application-level)
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

382 * allow for 5*256 = 1280 unique names, probably sufficient for any single ASL
383 * file. If this becomes too small, we can use alpha+numerals for a total
384 * of 5*36*36 = 6480.
385 */
386#define ACPI_NUM_RES_PREFIX 5
387
388static UINT32 AcpiGbl_NextResourceId = 0;
389static UINT8 AcpiGbl_NextPrefix = 0;
1/******************************************************************************
2 *
3 * Module Name: dmrestag - Add tags to resource descriptors (Application-level)
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

382 * allow for 5*256 = 1280 unique names, probably sufficient for any single ASL
383 * file. If this becomes too small, we can use alpha+numerals for a total
384 * of 5*36*36 = 6480.
385 */
386#define ACPI_NUM_RES_PREFIX 5
387
388static UINT32 AcpiGbl_NextResourceId = 0;
389static UINT8 AcpiGbl_NextPrefix = 0;
390static UINT8 AcpiGbl_Prefix[ACPI_NUM_RES_PREFIX] =
390static char AcpiGbl_Prefix[ACPI_NUM_RES_PREFIX] =
391 {'Y','Z','J','K','X'};
392
393
394/*******************************************************************************
395 *
396 * FUNCTION: AcpiDmCheckResourceReference
397 *
398 * PARAMETERS: Op - Parse Op for the AML opcode

--- 601 unchanged lines hidden ---
391 {'Y','Z','J','K','X'};
392
393
394/*******************************************************************************
395 *
396 * FUNCTION: AcpiDmCheckResourceReference
397 *
398 * PARAMETERS: Op - Parse Op for the AML opcode

--- 601 unchanged lines hidden ---