Commits

Peng Fan committed 355b1f21534
MLK-12795 pinctrl: imx: fix initialization of imx_pinctrl_desc To i.MX7D and i.MX6ULL, we need to support multiple iomux controller, but we only have one imx_pinctrl_desc with type static. This means different iomux controller share one imx_pinctrl_desc variable. The value filled into imx_pinctrl_desc when probing the first iomuxc node will be overriden when probing the second one. This will incur errors, such as 'mx7d-pinctrl 30330000.iomuxc: could not map pin config for "MX7D_PAD_LCD_DATA00"' In this patch, dynamically allocate imx_pinctrl_desc for each iomux controller to fix the issue. Signed-off-by: Peng Fan <peng.fan@nxp.com>