acpihalt: add GRUB_ACPI_OPCODE_CREATE_DWORD_FIELD (0x8a)
Fixes ACPI halt on ASUSTeK P8B75-V, Bios: American Megatrends v: 0414 date: 04/24/2012 Reported-By: Goh Lip <g.lip@gmx.com>
This commit is contained in:
parent
19554a6034
commit
aa7bb4607b
2 changed files with 3 additions and 1 deletions
|
@ -248,6 +248,7 @@ get_sleep_type (grub_uint8_t *table, grub_uint8_t *ptr, grub_uint8_t *end,
|
|||
if (!add)
|
||||
return -1;
|
||||
break;
|
||||
case GRUB_ACPI_OPCODE_CREATE_DWORD_FIELD:
|
||||
case GRUB_ACPI_OPCODE_CREATE_WORD_FIELD:
|
||||
case GRUB_ACPI_OPCODE_CREATE_BYTE_FIELD:
|
||||
{
|
||||
|
|
|
@ -221,9 +221,10 @@ enum
|
|||
GRUB_ACPI_OPCODE_CONCATRES = 0x84,
|
||||
GRUB_ACPI_OPCODE_MOD = 0x85,
|
||||
GRUB_ACPI_OPCODE_INDEX = 0x88,
|
||||
GRUB_ACPI_OPCODE_TOSTRING = 0x9c,
|
||||
GRUB_ACPI_OPCODE_CREATE_DWORD_FIELD = 0x8a,
|
||||
GRUB_ACPI_OPCODE_CREATE_WORD_FIELD = 0x8b,
|
||||
GRUB_ACPI_OPCODE_CREATE_BYTE_FIELD = 0x8c,
|
||||
GRUB_ACPI_OPCODE_TOSTRING = 0x9c,
|
||||
GRUB_ACPI_OPCODE_IF = 0xa0, GRUB_ACPI_OPCODE_ONES = 0xff
|
||||
};
|
||||
enum
|
||||
|
|
Loading…
Reference in a new issue