diff options
Diffstat (limited to 'source/compiler/dtutils.c')
| -rw-r--r-- | source/compiler/dtutils.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source/compiler/dtutils.c b/source/compiler/dtutils.c index 82a51cb896fb..a3dcb507b25b 100644 --- a/source/compiler/dtutils.c +++ b/source/compiler/dtutils.c @@ -439,6 +439,8 @@ DtGetFieldType ( case ACPI_DMT_BUF12: case ACPI_DMT_BUF16: case ACPI_DMT_BUF18: + case ACPI_DMT_BUF32: + case ACPI_DMT_BUF112: case ACPI_DMT_BUF128: case ACPI_DMT_PCI_PATH: case ACPI_DMT_PMTT_VENDOR: @@ -746,6 +748,16 @@ DtGetFieldLength ( ByteLength = 18; break; + case ACPI_DMT_BUF32: + + ByteLength = 32; + break; + + case ACPI_DMT_BUF112: + + ByteLength = 112; + break; + case ACPI_DMT_BUF128: ByteLength = 128; |
