From b09fced9bc13f954c572516653e8df50dfa26746 Mon Sep 17 00:00:00 2001 From: Etienne Carriere Date: Thu, 18 Jul 2024 15:04:32 +0200 Subject: [PATCH] drivers: scmi-msg: correct voltage domain protocol version Fix the version ID of the implemented SCMI voltage domain protocol that is v2.0 (ID 0x20000), not v3.0 (ID 0x30000). Fixes: 006d89b8f49f ("drivers: scmi-msg: add SCMI Voltage Domain protocol") Signed-off-by: Etienne Carriere Acked-by: Jerome Forissier --- core/drivers/scmi-msg/voltage_domain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/drivers/scmi-msg/voltage_domain.h b/core/drivers/scmi-msg/voltage_domain.h index be53cb6ffd7..167dab12a7a 100644 --- a/core/drivers/scmi-msg/voltage_domain.h +++ b/core/drivers/scmi-msg/voltage_domain.h @@ -12,7 +12,7 @@ #include "common.h" -#define SCMI_PROTOCOL_VERSION_VOLTAGE_DOMAIN 0x30000 +#define SCMI_PROTOCOL_VERSION_VOLTAGE_DOMAIN 0x20000 /* * Identifiers of the SCMI Clock Management Protocol commands