diff options
author | Bastian Krause <bst@pengutronix.de> | 2023-02-22 13:23:20 +0100 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2023-02-23 16:07:36 +0100 |
commit | dd86cdf21582baec789488301b881f8b183cbdfa (patch) | |
tree | 5f20c3dec50b96053cd585707ab24473e9788b02 /drivers/net/Kconfig | |
parent | 7db66254ce717464c8e6e68df0f5157bbc9db3bc (diff) | |
download | barebox-dd86cdf21582baec789488301b881f8b183cbdfa.tar.gz |
net: make DRIVER_NET_DESIGNWARE_IMX8 select MFD_SYSCON
The driver includes mfd/syscon.h and uses
syscon_regmap_lookup_by_phandle():
eqos-imx8 30bf0000.ethernet@30bf0000.of: probe failed: Function not implemented
Select MFD_SYSCON to fix this.
Fixes: b6fb740819 ("net: eqos: add i.MX8MP support")
Signed-off-by: Bastian Krause <bst@pengutronix.de>
Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
Link: https://lore.barebox.org/20230222122320.1494205-1-bst@pengutronix.de
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/net/Kconfig')
-rw-r--r-- | drivers/net/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index a9fc073d57..25b46ccb11 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -111,6 +111,7 @@ config DRIVER_NET_DESIGNWARE_IMX8 bool "Designware EQOS i.MX8 Ethernet driver" depends on HAS_DMA && COMMON_CLK && OFTREE && (ARCH_IMX8M || COMPILE_TEST) select DRIVER_NET_DESIGNWARE_EQOS + select MFD_SYSCON help This option enables support for the Designware EQOS MAC implemented on the NXP i.MX8 SoCs. |