pinctrl: imx: Rename imx_pinctrl_ops to match drivers

Rename the structure instances to match driver names, so they
can be easily looked up e.g. in objdump and readelf outputs.
No functional change.

Signed-off-by: Marek Vasut <marex@denx.de>
diff --git a/drivers/pinctrl/nxp/pinctrl-vf610.c b/drivers/pinctrl/nxp/pinctrl-vf610.c
index 86514eb..0e17b8c 100644
--- a/drivers/pinctrl/nxp/pinctrl-vf610.c
+++ b/drivers/pinctrl/nxp/pinctrl-vf610.c
@@ -27,7 +27,7 @@
 	{ /* sentinel */ }
 };
 
-static const struct pinctrl_ops imx_pinctrl_ops = {
+static const struct pinctrl_ops vf610_pinctrl_ops = {
 	.set_state = imx_pinctrl_set_state,
 };
 
@@ -38,6 +38,6 @@
 	.probe = vf610_pinctrl_probe,
 	.remove = imx_pinctrl_remove,
 	.priv_auto	= sizeof(struct imx_pinctrl_priv),
-	.ops = &imx_pinctrl_ops,
+	.ops = &vf610_pinctrl_ops,
 	.flags = DM_FLAG_PRE_RELOC,
 };