aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Vizzarro <Luca.Vizzarro@arm.com>2020-10-08 19:11:43 +0100
committernicola-mazzucato-arm <42373140+nicola-mazzucato-arm@users.noreply.github.com>2020-10-22 14:39:59 +0100
commitd5eece312a6f2863e0ee27124aa20af70b4c13b9 (patch)
tree4a1f7f4a7e28e38800b873a60bda5f38dcc80295
parent586092c41b113a8936e4acb90e5227f4e8f99d49 (diff)
mod_scmi_reset: Fix protocol version
The protocol version for the reset domain protocol should be 0x10000 as specified in section 4.8.2.1 of th SCMI v2 spec. This was erroneously set to 0x20000 instead. Change-Id: I14a5e8ba26a520200bb6303bbd891c790e81f3cc Signed-off-by: Luca Vizzarro <Luca.Vizzarro@arm.com>
-rw-r--r--module/scmi_reset_domain/include/internal/scmi_reset_domain.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/scmi_reset_domain/include/internal/scmi_reset_domain.h b/module/scmi_reset_domain/include/internal/scmi_reset_domain.h
index aea05206..a9169d93 100644
--- a/module/scmi_reset_domain/include/internal/scmi_reset_domain.h
+++ b/module/scmi_reset_domain/include/internal/scmi_reset_domain.h
@@ -24,7 +24,7 @@
* \{
*/
-#define SCMI_PROTOCOL_VERSION_RESET_DOMAIN UINT32_C(0x20000)
+#define SCMI_PROTOCOL_VERSION_RESET_DOMAIN UINT32_C(0x10000)
#define SCMI_RESET_STATE_ARCH (0 << 31)
#define SCMI_RESET_STATE_IMPL (1 << 31)