summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorDan Carpenter <[email protected]>2026-03-11 22:39:35 +0300
committerPeng Fan <[email protected]>2026-03-23 10:58:20 +0800
commit264cbb187180b633130070eeae815d15ea6534dd (patch)
treecc7910f576add50dceb366ce82f95b9fa0650415 /drivers
parent80bdc86db5a54730bcc11ce148e25e06f3346553 (diff)
scmi: pinctrl: add pinctrl message IDs
Add all the pinctrl message IDs. I renamed SCMI_MSG_PINCTRL_CONFIG_SET to SCMI_PINCTRL_SETTINGS_CONFIGURE so the naming matches the spec better. Signed-off-by: Dan Carpenter <[email protected]> Reviewed-by: Peng Fan <[email protected]> Reviewed-by: Linus Walleij <[email protected]> Signed-off-by: Peng Fan <[email protected]>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/pinctrl/nxp/pinctrl-imx-scmi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/nxp/pinctrl-imx-scmi.c b/drivers/pinctrl/nxp/pinctrl-imx-scmi.c
index 3cc2b85e151..dcd76fdc571 100644
--- a/drivers/pinctrl/nxp/pinctrl-imx-scmi.c
+++ b/drivers/pinctrl/nxp/pinctrl-imx-scmi.c
@@ -70,7 +70,7 @@ static int imx_pinconf_scmi_set(struct udevice *dev, u32 mux_ofs, u32 mux, u32 c
in.attributes = num_cfgs << PINCTRL_NUM_CFGS_SHIFT;
msg = SCMI_MSG_IN(SCMI_PROTOCOL_ID_PINCTRL,
- SCMI_MSG_PINCTRL_CONFIG_SET, in, out);
+ SCMI_PINCTRL_SETTINGS_CONFIGURE, in, out);
ret = devm_scmi_process_msg(dev, &msg);
if (ret || out.status) {