Skip to content

Commit b8d3405

Browse files
nathanlynchtyreld
authored andcommittedFeb 7, 2024
librtas: sync papr-sysparm.h with kernel
The data member is __u8 as of 8ded03ae48b3 ("powerpc/pseries/papr-sysparm: use u8 arrays for payloads"). Verified that the object code in librtas_src/sysparm.o is unchanged by this. Signed-off-by: Nathan Lynch <nathanl@linux.ibm.com> Signed-off-by: Tyrel Datwyler <tyreld@linux.ibm.com>
1 parent d8d4ee6 commit b8d3405

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎librtas_src/papr-sysparm.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ enum {
1414
struct papr_sysparm_io_block {
1515
__u32 parameter;
1616
__u16 length;
17-
char data[PAPR_SYSPARM_MAX_OUTPUT];
17+
__u8 data[PAPR_SYSPARM_MAX_OUTPUT];
1818
};
1919

2020
/**

0 commit comments

Comments
 (0)
Please sign in to comment.