Deleted Added
full compact
dmopcode.c (241973) dmopcode.c (243347)
1/*******************************************************************************
2 *
3 * Module Name: dmopcode - AML disassembler, specific AML opcodes
4 *
5 ******************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2012, Intel Corp.

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

640 * 4) Raw data buffer (if none of the above)
641 *
642 * Since there are no special AML opcodes to differentiate these
643 * types of buffers, we have to closely look at the data in the
644 * buffer to determine the type.
645 */
646 if (!AcpiGbl_NoResourceDisassembly)
647 {
1/*******************************************************************************
2 *
3 * Module Name: dmopcode - AML disassembler, specific AML opcodes
4 *
5 ******************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2012, Intel Corp.

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

640 * 4) Raw data buffer (if none of the above)
641 *
642 * Since there are no special AML opcodes to differentiate these
643 * types of buffers, we have to closely look at the data in the
644 * buffer to determine the type.
645 */
646 if (!AcpiGbl_NoResourceDisassembly)
647 {
648 Status = AcpiDmIsResourceTemplate (Op);
648 Status = AcpiDmIsResourceTemplate (WalkState, Op);
649 if (ACPI_SUCCESS (Status))
650 {
651 Op->Common.DisasmOpcode = ACPI_DASM_RESOURCE;
652 AcpiOsPrintf ("ResourceTemplate");
653 break;
654 }
655 else if (Status == AE_AML_NO_RESOURCE_END_TAG)
656 {

--- 172 unchanged lines hidden ---
649 if (ACPI_SUCCESS (Status))
650 {
651 Op->Common.DisasmOpcode = ACPI_DASM_RESOURCE;
652 AcpiOsPrintf ("ResourceTemplate");
653 break;
654 }
655 else if (Status == AE_AML_NO_RESOURCE_END_TAG)
656 {

--- 172 unchanged lines hidden ---