Index: amltypes.h =================================================================== RCS file: /cvs/src/sys/dev/acpi/amltypes.h,v retrieving revision 1.25 diff -p -u -r1.25 amltypes.h --- amltypes.h 6 Feb 2007 18:56:31 -0000 1.25 +++ amltypes.h 4 Apr 2007 14:40:48 -0000 @@ -136,7 +136,7 @@ #define AMLOP_IF 0xA0 #define AMLOP_ELSE 0xA1 #define AMLOP_WHILE 0xA2 -#define AMLOP_NOP 0xA3 +#define AMLOP_NOOP 0xA3 #define AMLOP_RETURN 0xA4 #define AMLOP_BREAK 0xA5 #define AMLOP_BREAKPOINT 0xCC Index: dsdt.c =================================================================== RCS file: /cvs/src/sys/dev/acpi/dsdt.c,v retrieving revision 1.86 diff -p -u -r1.86 dsdt.c --- dsdt.c 23 Mar 2007 05:43:46 -0000 1.86 +++ dsdt.c 4 Apr 2007 14:40:50 -0000 @@ -190,8 +190,8 @@ struct aml_opcode aml_table[] = { { AMLOP_CONTINUE, "Continue", "" }, { AMLOP_RETURN, "Return", "t", aml_parseref }, { AMLOP_FATAL, "Fatal", "bdi", aml_parsemisc2 }, - { AMLOP_NOP, "Nop", "", aml_parsesimple }, - { AMLOP_BREAKPOINT, "BreakPoint", "" }, + { AMLOP_NOOP, "Noop", "", aml_parsesimple }, + { AMLOP_BREAKPOINT, "BreakPoint", "", aml_parsesimple }, /* Arithmetic operations */ { AMLOP_INCREMENT, "Increment", "t", aml_parsemath },