diff options
author | Jordan Hargrave <jordan@cvs.openbsd.org> | 2009-04-09 16:52:33 +0000 |
---|---|---|
committer | Jordan Hargrave <jordan@cvs.openbsd.org> | 2009-04-09 16:52:33 +0000 |
commit | 3d72202a65a02b5a0a9d779a18b5f6d298a3ecc6 (patch) | |
tree | 4d94841bbbc605454ac3f935c39c7769e962eeba /sys | |
parent | 3577dc87ce7243d86de38f20b2c751e3479e955b (diff) |
Fixed argtype for Increment/Decrement. Field args were being evaluated as
integers instead remaining a reference.
ok marco@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/acpi/dsdt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpi/dsdt.c b/sys/dev/acpi/dsdt.c index 0dfa0118d3b..56f4c94081d 100644 --- a/sys/dev/acpi/dsdt.c +++ b/sys/dev/acpi/dsdt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dsdt.c,v 1.143 2009/03/13 19:01:03 marco Exp $ */ +/* $OpenBSD: dsdt.c,v 1.144 2009/04/09 16:52:32 jordan Exp $ */ /* * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> * @@ -170,8 +170,8 @@ struct aml_opcode aml_table[] = { { AMLOP_BREAKPOINT, "BreakPoint", "", }, /* Arithmetic operations */ - { AMLOP_INCREMENT, "Increment", "t", }, - { AMLOP_DECREMENT, "Decrement", "t", }, + { AMLOP_INCREMENT, "Increment", "S", }, + { AMLOP_DECREMENT, "Decrement", "S", }, { AMLOP_ADD, "Add", "iir", }, { AMLOP_SUBTRACT, "Subtract", "iir", }, { AMLOP_MULTIPLY, "Multiply", "iir", }, |