exresop.c (85a3685852d9ac7d92be9d824533c915a4597fa4) exresop.c (a5922a1f738b077c9f341f4bf3c02be436d39687)
1/******************************************************************************
2 *
3 * Module Name: exresop - AML Interpreter operand/object resolution
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2015, Intel Corp.

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

302
303 case ARGI_REFERENCE: /* References: */
304 case ARGI_INTEGER_REF:
305 case ARGI_OBJECT_REF:
306 case ARGI_DEVICE_REF:
307 case ARGI_TARGETREF: /* Allows implicit conversion rules before store */
308 case ARGI_FIXED_TARGET: /* No implicit conversion before store to target */
309 case ARGI_SIMPLE_TARGET: /* Name, Local, or arg - no implicit conversion */
1/******************************************************************************
2 *
3 * Module Name: exresop - AML Interpreter operand/object resolution
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2015, Intel Corp.

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

302
303 case ARGI_REFERENCE: /* References: */
304 case ARGI_INTEGER_REF:
305 case ARGI_OBJECT_REF:
306 case ARGI_DEVICE_REF:
307 case ARGI_TARGETREF: /* Allows implicit conversion rules before store */
308 case ARGI_FIXED_TARGET: /* No implicit conversion before store to target */
309 case ARGI_SIMPLE_TARGET: /* Name, Local, or arg - no implicit conversion */
310 case ARGI_STORE_TARGET:
311
310 /*
311 * Need an operand of type ACPI_TYPE_LOCAL_REFERENCE
312 * A Namespace Node is OK as-is
313 */
314 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) ==
315 ACPI_DESC_TYPE_NAMED) {
316 goto next_operand;
317 }

--- 384 unchanged lines hidden ---
312 /*
313 * Need an operand of type ACPI_TYPE_LOCAL_REFERENCE
314 * A Namespace Node is OK as-is
315 */
316 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) ==
317 ACPI_DESC_TYPE_NAMED) {
318 goto next_operand;
319 }

--- 384 unchanged lines hidden ---