summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-03-10 10:26:14 -0600
committerTom Rini <[email protected]>2026-03-13 10:52:02 -0600
commita5fcbd5a83553b3803df28422410c9fd22adaec6 (patch)
treeb7e532e013e21d7d6577357dc164f4b91bbb9405
parent67586012490a4b2b4db6b79647aaf946f03eb767 (diff)
net: Move network PHY under NETDEVICES
A number of network PHY drivers have Kconfig dependencies on various network drivers under NETDEVICES. This is in addition to logical dependencies of network PHYs needing network drivers. Resolve the Kconfig problems by moving the network PHY lines to be after the network devices, within the overall NETDEVICES guard. Signed-off-by: Tom Rini <[email protected]> Acked-by: Jerome Forissier <[email protected]>
-rw-r--r--drivers/net/Kconfig8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
index b82b6406e69..7c957b66bcd 100644
--- a/drivers/net/Kconfig
+++ b/drivers/net/Kconfig
@@ -1,7 +1,3 @@
-source "drivers/net/phy/Kconfig"
-source "drivers/net/pfe_eth/Kconfig"
-source "drivers/net/fsl-mc/Kconfig"
-
config ETH
def_bool y
@@ -1102,4 +1098,8 @@ config MDIO_MUX_MESON_GXL
This driver is used for the MDIO mux found on the Amlogic GXL & compatible
SoCs.
+source "drivers/net/phy/Kconfig"
+source "drivers/net/pfe_eth/Kconfig"
+source "drivers/net/fsl-mc/Kconfig"
+
endif # NETDEVICES