diff options
| author | Udit Kumar <[email protected]> | 2026-08-10 13:45:31 +0530 |
|---|---|---|
| committer | Peng Fan <[email protected]> | 2026-08-11 15:51:15 +0800 |
| commit | 9f82dcd489246c66eb780235d1fedb536771c787 (patch) | |
| tree | 207f1f9da1286f6d56d5a86ffbecd8ea5ff3f9a6 /include | |
| parent | d57e3e4c75951a7e4b98d31bcde4a95b058b66e5 (diff) | |
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 <[email protected]>
Signed-off-by: Peng Fan <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/scmi_protocols.h | 2 |
1 files changed, 1 insertions, 1 deletions
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, |
