From 9f82dcd489246c66eb780235d1fedb536771c787 Mon Sep 17 00:00:00 2001 From: Udit Kumar Date: Mon, 10 Aug 2026 13:45:31 +0530 Subject: scmi: pinctrl: Rename SCMI_PIN_DEFUALT to SCMI_PIN_DEFAULT Fix typo in enum scmi_config_type in include/scmi_protocols.h. The enum value SCMI_PIN_DEFUALT was misspelled and should be SCMI_PIN_DEFAULT to match the correct English spelling. This fixes potential compilation issues and improves code clarity for any code that references this enum value Fixes: 0cb160f1b629 ("scmi: pinctrl: add pinctrl driver for SCMI") Signed-off-by: Udit Kumar Signed-off-by: Peng Fan --- include/scmi_protocols.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/scmi_protocols.h b/include/scmi_protocols.h index 801912d16a9..86165f8ba5e 100644 --- a/include/scmi_protocols.h +++ b/include/scmi_protocols.h @@ -1341,7 +1341,7 @@ struct scmi_pinctrl_release_out { /* SCMI Pinctrl Config Types */ enum scmi_config_type { - SCMI_PIN_DEFUALT = 0, + SCMI_PIN_DEFAULT = 0, SCMI_PIN_BIAS_BUS_HOLD = 1, SCMI_PIN_BIAS_DISABLE = 2, SCMI_PIN_BIAS_HIGH_IMPEDANCE = 3, -- cgit v1.3.1