ACPICA: Clib: Fix build issues when ACPI_USE_STANDARD_HEADERS is not defined by converting size_t to acpi_size
ACPICA commit 7cf411136c69ef0b8f184b96599eb45c15b89226 When standard size_t is not defined due to ACPI_USE_STANDARD_HEADERS=n, we shouldn't use size_t, but should use acpi_size instead. This fixes such build issue. Lv Zheng. Link: https://github.com/acpica/acpica/commit/7cf41113 Link: https://bugs.acpica.org/show_bug.cgi?id=1296 Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
556eae8bea
commit
b597664f8f
|
@ -134,7 +134,7 @@ int ap_write_to_binary_file(struct acpi_table_header *table, u32 instance)
|
|||
char filename[ACPI_NAME_SIZE + 16];
|
||||
char instance_str[16];
|
||||
ACPI_FILE file;
|
||||
size_t actual;
|
||||
acpi_size actual;
|
||||
u32 table_length;
|
||||
|
||||
/* Obtain table length */
|
||||
|
@ -211,7 +211,7 @@ struct acpi_table_header *ap_get_table_from_file(char *pathname,
|
|||
struct acpi_table_header *buffer = NULL;
|
||||
ACPI_FILE file;
|
||||
u32 file_size;
|
||||
size_t actual;
|
||||
acpi_size actual;
|
||||
|
||||
/* Must use binary mode */
|
||||
|
||||
|
|
Loading…
Reference in New Issue