diff options
author | Peng Fan <peng.fan@nxp.com> | 2019-12-30 09:52:15 +0800 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2020-01-08 13:20:08 +0100 |
commit | d8293e984b51e11d4f55d4ec5efa513368786e6c (patch) | |
tree | d9b81e8af6905b96c450ac87d1aca55afb0f4072 /drivers/pinctrl | |
parent | e997d30be85d9e16d47e17dcc352b3c6e71966d0 (diff) | |
download | u-boot-d8293e984b51e11d4f55d4ec5efa513368786e6c.tar.gz u-boot-d8293e984b51e11d4f55d4ec5efa513368786e6c.tar.bz2 u-boot-d8293e984b51e11d4f55d4ec5efa513368786e6c.zip |
pinctrl: imx8m: support i.MX8MP
Add i.MX8MP compatible to let the pinctrl driver could support
i.MX8MP.
Reviewed-by: Ye Li <ye.li@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r-- | drivers/pinctrl/nxp/pinctrl-imx8m.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pinctrl/nxp/pinctrl-imx8m.c b/drivers/pinctrl/nxp/pinctrl-imx8m.c index b3844314b3..5b7cbb69ae 100644 --- a/drivers/pinctrl/nxp/pinctrl-imx8m.c +++ b/drivers/pinctrl/nxp/pinctrl-imx8m.c @@ -22,6 +22,7 @@ static const struct udevice_id imx8m_pinctrl_match[] = { { .compatible = "fsl,imx8mq-iomuxc", .data = (ulong)&imx8mq_pinctrl_soc_info }, { .compatible = "fsl,imx8mm-iomuxc", .data = (ulong)&imx8mq_pinctrl_soc_info }, { .compatible = "fsl,imx8mn-iomuxc", .data = (ulong)&imx8mq_pinctrl_soc_info }, + { .compatible = "fsl,imx8mp-iomuxc", .data = (ulong)&imx8mq_pinctrl_soc_info }, { /* sentinel */ } }; |