Skip to content

Commit 00395b7

Browse files
ShuuichirouIshiirafaeljw
authored andcommitted
ACPICA: Fix AEST Processor generic resource substructure data field byte length
ACPICA commit 13b9327761955f6e1e5dbf748b3112940c0dc539 The byte length of the Data field in the AEST Processor generic resource substructure defined in ACPI for the Armv8 RAS Extensions 1.1 is 4Byte. However, it is defined as a pointer type, and on a 64-bit machine, it is interpreted as 8 bytes. Therefore, it is changed from a pointer type unsigned integer 1 byte to an unsigned integer 4 bytes. Link: acpica/acpica@13b93277 Signed-off-by: Shuuichirou Ishii <ishii.shuuichir@fujitsu.com> Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent e4a07f5 commit 00395b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/acpi/actbl2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ typedef struct acpi_aest_processor_tlb {
154154
/* 2R: Processor Generic Resource Substructure */
155155

156156
typedef struct acpi_aest_processor_generic {
157-
u8 *resource;
157+
u32 resource;
158158

159159
} acpi_aest_processor_generic;
160160

0 commit comments

Comments
 (0)