diff options
Diffstat (limited to 'include/acpi/acutils.h')
-rw-r--r-- | include/acpi/acutils.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/acpi/acutils.h b/include/acpi/acutils.h index c1086452696e..7386eb81bd2a 100644 --- a/include/acpi/acutils.h +++ b/include/acpi/acutils.h | |||
@@ -159,7 +159,6 @@ extern const u8 _acpi_ctype[]; | |||
159 | #define ACPI_IS_LOWER(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_LO)) | 159 | #define ACPI_IS_LOWER(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_LO)) |
160 | #define ACPI_IS_PRINT(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP | _ACPI_DI | _ACPI_SP | _ACPI_PU)) | 160 | #define ACPI_IS_PRINT(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP | _ACPI_DI | _ACPI_SP | _ACPI_PU)) |
161 | #define ACPI_IS_ALPHA(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP)) | 161 | #define ACPI_IS_ALPHA(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP)) |
162 | #define ACPI_IS_ASCII(c) ((c) < 0x80) | ||
163 | 162 | ||
164 | #endif /* ACPI_USE_SYSTEM_CLIBRARY */ | 163 | #endif /* ACPI_USE_SYSTEM_CLIBRARY */ |
165 | 164 | ||
@@ -419,6 +418,12 @@ acpi_ut_strtoul64(char *string, u32 base, acpi_integer * ret_integer); | |||
419 | 418 | ||
420 | #define ACPI_ANY_BASE 0 | 419 | #define ACPI_ANY_BASE 0 |
421 | 420 | ||
421 | u32 acpi_ut_get_descriptor_length(void *aml); | ||
422 | |||
423 | u16 acpi_ut_get_resource_length(void *aml); | ||
424 | |||
425 | u8 acpi_ut_get_resource_type(void *aml); | ||
426 | |||
422 | u8 *acpi_ut_get_resource_end_tag(union acpi_operand_object *obj_desc); | 427 | u8 *acpi_ut_get_resource_end_tag(union acpi_operand_object *obj_desc); |
423 | 428 | ||
424 | u8 acpi_ut_generate_checksum(u8 * buffer, u32 length); | 429 | u8 acpi_ut_generate_checksum(u8 * buffer, u32 length); |