aslpredef.c (f425b8be7e7a38e47677d7bd68819dccbdcc3134) aslpredef.c (08ddfe865704486086ac90d3a344271bcea9e6c6)
1/******************************************************************************
2 *
3 * Module Name: aslpredef - support for ACPI predefined names
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

669 if (Op->Asl.CompileFlags & OP_COMPILER_EMITTED)
670 {
671 return (ACPI_NOT_RESERVED_NAME);
672 }
673
674 /*
675 * Was not actually emitted by the compiler. This is a special case,
676 * however. If the ASL code being compiled was the result of a
1/******************************************************************************
2 *
3 * Module Name: aslpredef - support for ACPI predefined names
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

669 if (Op->Asl.CompileFlags & OP_COMPILER_EMITTED)
670 {
671 return (ACPI_NOT_RESERVED_NAME);
672 }
673
674 /*
675 * Was not actually emitted by the compiler. This is a special case,
676 * however. If the ASL code being compiled was the result of a
677 * dissasembly, it may possibly contain valid compiler-emitted names
677 * disassembly, it may possibly contain valid compiler-emitted names
678 * of the form "_T_x". We don't want to issue an error or even a
679 * warning and force the user to manually change the names. So, we
680 * will issue a remark instead.
681 */
682 AslError (ASL_REMARK, ASL_MSG_COMPILER_RESERVED,
683 Op, Op->Asl.ExternalName);
684 return (ACPI_COMPILER_RESERVED_NAME);
685 }

--- 211 unchanged lines hidden ---
678 * of the form "_T_x". We don't want to issue an error or even a
679 * warning and force the user to manually change the names. So, we
680 * will issue a remark instead.
681 */
682 AslError (ASL_REMARK, ASL_MSG_COMPILER_RESERVED,
683 Op, Op->Asl.ExternalName);
684 return (ACPI_COMPILER_RESERVED_NAME);
685 }

--- 211 unchanged lines hidden ---