summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-03-23 13:53:00 -0600
committerJerome Forissier <[email protected]>2026-03-31 16:54:49 +0200
commit2edd015cd578dd6e157499e6bd55082637f72bf3 (patch)
tree359fec84c4e87843476b39fc6a0c8f32c339d3a0 /drivers
parent66da793b69cbc3cced046c93e9882b249a30a5c6 (diff)
net: Correct dependencies for HIFEMAC_ETH
The HIFEMAC_ETH functionality can only work with both DM_ETH_PHY and DM_MDIO enabled (it calls one of the functions that requires both), so express this dependency in Kconfig. Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/Kconfig2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
index 9d4e9f06970..ed07e286676 100644
--- a/drivers/net/Kconfig
+++ b/drivers/net/Kconfig
@@ -983,6 +983,8 @@ config HIFEMAC_ETH
depends on DM && OF_CONTROL
select CLK
select DM_CLK
+ select DM_ETH_PHY
+ select DM_MDIO
select DM_RESET
select PHYLIB
help