diff options
| author | Peng Fan <[email protected]> | 2025-09-27 00:06:17 +0800 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-10-09 14:16:11 -0600 |
| commit | eb7469eb1a32a02d024da254d34912c3fe741c7f (patch) | |
| tree | 3f45886662c92ee5fdb1b7a905d121e9f5dbbf1a /include | |
| parent | 23e2b769220be4d3e35167492ef2cd915f647888 (diff) | |
firmware: scmi: Add error code IN_USE
In SCMI spec 3.2, there is an update:
Add IN_USE error code for usage with Pin control protocol
So add the error decoding for IN_USE.
Signed-off-by: Peng Fan <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/scmi_protocols.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/scmi_protocols.h b/include/scmi_protocols.h index 762a1032c37..95e0c3cce3b 100644 --- a/include/scmi_protocols.h +++ b/include/scmi_protocols.h @@ -40,6 +40,7 @@ enum scmi_status_code { SCMI_GENERIC_ERROR = -8, SCMI_HARDWARE_ERROR = -9, SCMI_PROTOCOL_ERROR = -10, + SCMI_IN_USE = -11, }; /* |
