Deleted Added
full compact
dmwalk.c (128212) dmwalk.c (129684)
1/*******************************************************************************
2 *
3 * Module Name: dmwalk - AML disassembly tree walk
1/*******************************************************************************
2 *
3 * Module Name: dmwalk - AML disassembly tree walk
4 * $Revision: 12 $
4 * $Revision: 13 $
5 *
6 ******************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.

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

469
470 while (AcpiGbl_ExternalList)
471 {
472 AcpiOsPrintf (" External (%s)\n", AcpiGbl_ExternalList->Path);
473
474 NextExternal = AcpiGbl_ExternalList->Next;
475 ACPI_MEM_FREE (AcpiGbl_ExternalList->Path);
476 ACPI_MEM_FREE (AcpiGbl_ExternalList);
5 *
6 ******************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.

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

469
470 while (AcpiGbl_ExternalList)
471 {
472 AcpiOsPrintf (" External (%s)\n", AcpiGbl_ExternalList->Path);
473
474 NextExternal = AcpiGbl_ExternalList->Next;
475 ACPI_MEM_FREE (AcpiGbl_ExternalList->Path);
476 ACPI_MEM_FREE (AcpiGbl_ExternalList);
477 AcpiGbl_ExternalList = NextExternal;
477 AcpiGbl_ExternalList = NextExternal;
478 }
479 AcpiOsPrintf ("\n");
480 }
481
482 return (AE_OK);
483 }
484 }
485 else if ((AcpiDmBlockType (Op->Common.Parent) & BLOCK_BRACE) &&

--- 457 unchanged lines hidden ---
478 }
479 AcpiOsPrintf ("\n");
480 }
481
482 return (AE_OK);
483 }
484 }
485 else if ((AcpiDmBlockType (Op->Common.Parent) & BLOCK_BRACE) &&

--- 457 unchanged lines hidden ---