summaryrefslogtreecommitdiff
path: root/drivers/pinctrl/nxp/pinctrl-imxrt.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pinctrl/nxp/pinctrl-imxrt.c')
-rw-r--r--drivers/pinctrl/nxp/pinctrl-imxrt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pinctrl/nxp/pinctrl-imxrt.c b/drivers/pinctrl/nxp/pinctrl-imxrt.c
index fdb3cbe8190..4383015fb33 100644
--- a/drivers/pinctrl/nxp/pinctrl-imxrt.c
+++ b/drivers/pinctrl/nxp/pinctrl-imxrt.c
@@ -27,7 +27,7 @@ static const struct udevice_id imxrt_pinctrl_match[] = {
{ /* sentinel */ }
};
-static const struct pinctrl_ops imx_pinctrl_ops = {
+static const struct pinctrl_ops imxrt_pinctrl_ops = {
.set_state = imx_pinctrl_set_state,
};
@@ -38,6 +38,6 @@ U_BOOT_DRIVER(imxrt_pinctrl) = {
.probe = imxrt_pinctrl_probe,
.remove = imx_pinctrl_remove,
.priv_auto = sizeof(struct imx_pinctrl_priv),
- .ops = &imx_pinctrl_ops,
+ .ops = &imxrt_pinctrl_ops,
.flags = DM_FLAG_PRE_RELOC,
};