diff options
| author | Jakub Kicinski <kuba@kernel.org> | 2026-07-22 15:00:59 -0700 |
|---|---|---|
| committer | Jakub Kicinski <kuba@kernel.org> | 2026-07-22 15:00:59 -0700 |
| commit | 93902b441b6d7f59cc5f69c0d2c99a68ae99ad42 (patch) | |
| tree | b058b6986580e2afdfa97653ba27ac20ebea1b22 | |
| parent | a65340168529ea122a364062500b30eebfefbffb (diff) | |
| parent | 8a48eb846f7e2cf819495db8a6b194a1ad0e95fb (diff) | |
| download | linux-next-93902b441b6d7f59cc5f69c0d2c99a68ae99ad42.tar.gz linux-next-93902b441b6d7f59cc5f69c0d2c99a68ae99ad42.zip | |
Merge branch 'net-mdio-rearrange-kconfig-menus'
Maxime Chevallier says:
====================
net: mdio: Rearrange Kconfig menus
In menuconfig, all MDIO controllers and muxes are listed directly under the
Device drivers -> Network device support menu.
Let's group these in their own subenu :
Device drivers ->
Network device support ->
MDIO controller drivers ->
Mdio driver A
Mdio driver B
...
MDIO Multiplexers ->
MDIO Mux driver A
MDIO Mux driver B
...
There are no functional or KConfig dependency changes in this series,
just menu reorganisation.
====================
Link: https://patch.msgid.link/20260715082226.51481-1-maxime.chevallier@bootlin.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
| -rw-r--r-- | drivers/net/mdio/Kconfig | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/net/mdio/Kconfig b/drivers/net/mdio/Kconfig index e57121019153..a05229838cb4 100644 --- a/drivers/net/mdio/Kconfig +++ b/drivers/net/mdio/Kconfig @@ -3,7 +3,8 @@ # MDIO Layer Configuration # -if PHYLIB +menu "MDIO controller drivers" + depends on PHYLIB config FWNODE_MDIO def_tristate (ACPI || OF) || COMPILE_TEST @@ -198,7 +199,7 @@ config MDIO_THUNDER ThunderX SoCs when the MDIO bus device appears as a PCI device. -comment "MDIO Multiplexers" +menu "MDIO Multiplexers" config MDIO_BUS_MUX tristate @@ -288,5 +289,5 @@ config MDIO_BUS_MUX_MMIOREG Currently, only 8/16/32 bits registers are supported. - -endif +endmenu +endmenu |
