From d5eece312a6f2863e0ee27124aa20af70b4c13b9 Mon Sep 17 00:00:00 2001 From: Luca Vizzarro Date: Thu, 8 Oct 2020 19:11:43 +0100 Subject: 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 --- module/scmi_reset_domain/include/internal/scmi_reset_domain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3