diff options
| author | Ye Li <[email protected]> | 2025-04-28 18:37:33 +0800 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2025-05-03 16:55:32 -0300 |
| commit | a881951c63153de39e448a1f51f65e34b48251fd (patch) | |
| tree | 942f3b1d2c2e1d2192d96768fa23fc8f9f490a90 /include | |
| parent | ced74d88b26d7ce9b04104c8036eef3066d3603a (diff) | |
scmi_protocols: update struct scmi_base_discover_list_protocols_out
@protocols is an array of protocol identifiers that are implemented,
excluding the Base protocol. Four protocol identifiers are packed into
each array element. The number of elements of @protocols is specified by
callee-side.
Signed-off-by: Ye Li <[email protected]>
Signed-off-by: Alice Guo <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/scmi_protocols.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/scmi_protocols.h b/include/scmi_protocols.h index 519b906b4ce..9046de7e3e7 100644 --- a/include/scmi_protocols.h +++ b/include/scmi_protocols.h @@ -145,7 +145,7 @@ struct scmi_base_discover_impl_version_out { struct scmi_base_discover_list_protocols_out { s32 status; u32 num_protocols; - u32 protocols[3]; + u32 protocols[]; }; /** |
