We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad0a066 commit e073c92Copy full SHA for e073c92
drivers/pinctrl/pinctrl_imx.c
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2022 NXP
+ * Copyright 2022, 2024 NXP
3
*
4
* SPDX-License-Identifier: Apache-2.0
5
*/
@@ -92,7 +92,10 @@ static int imx_pinctrl_init(void)
92
#elif defined(CONFIG_SOC_MIMX8MQ6)
93
CLOCK_EnableClock(kCLOCK_Iomux);
94
#endif /* CONFIG_SOC_SERIES_IMXRT10XX || CONFIG_SOC_SERIES_IMXRT11XX */
95
-
+#if defined(CONFIG_SOC_SERIES_IMXRT118X)
96
+ CLOCK_EnableClock(kCLOCK_Iomuxc1);
97
+ CLOCK_EnableClock(kCLOCK_Iomuxc2);
98
+#endif /* CONFIG_SOC_SERIES_IMXRT118X */
99
return 0;
100
}
101
0 commit comments