From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtpout-04.galae.net (smtpout-04.galae.net [185.171.202.116]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 26D0417C203 for ; Sun, 12 Jul 2026 20:18:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.171.202.116 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783887518; cv=none; b=KQ7TEuo/rJ5ww1ZBPymWTftoGfifXKIBR/hjjsXAG97RfDgNnLB6RQKw1lYQlYY1DFfSJIW0tD9ndbkoiU7VUXXVcy5z+an6Hw5uXHT9jLqdzrVpW4yKf/kMBga6lHy0EvGTKIb0gWZ3M5sLzqB2cK+EgIAlJaODMkDFZMGh6mM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783887518; c=relaxed/simple; bh=1gtzRhwUvVWuacdWiiucyl8zev/El3ZIMBUiSa7eCwo=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=g5aX9b8wM+NloTd6qZp+S/FSX3XTMKH2N/jWK4gsAxNAuElpQ+UnH1CkZBMLQQudOWPCYpjniU3fXx4QYrC5VBzO22EXBvmsoep8wmyqMyrfWVRtI3p+lxr9dQMZOSBfgqt27GnvFdc9xvAUWXt+sW7wZIPZLqurG0dW2M2CGn4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=s/0zVLp0; arc=none smtp.client-ip=185.171.202.116 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="s/0zVLp0" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-04.galae.net (Postfix) with ESMTPS id 185AFC2C672; Sun, 12 Jul 2026 20:18:48 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id 2A75C60341; Sun, 12 Jul 2026 20:18:32 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id B77F011BD39DD; Sun, 12 Jul 2026 22:18:25 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1783887511; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding; bh=1IpWZTScXvL80Z1R0rf5wBdpA1A0kDEuXz6CX3hd7nc=; b=s/0zVLp0JW6mXhwW0XMk/kB7wzRqV1iaKVZQ71O/pAKw4eCMEwhDe50WxY5+tAiwHMoC4i gruSVrcDzbgdy6tW/gSsZf9zt6asbHHaFjNYZ1aA++JAEthM239wJnr8+R5UHK1StyORZB KoDHq52Uqh2zvDKbhZdcq1aDbCf1d9Mdoqqx6YmJAx9l8Zzzplq1CNcJicexUqd2mZIsEO /wC+OHfDKgqsIuJYI1dtKlb1EhypUk1DvgEhFs4eSoRBR08CesKQgzTb6oYq214QR7X1Kr d/rPTmvhePVAai8S1OVxydX2D9STSo70GmTJR8eykcRRl37nUfNm5FdVl4IkDQ== From: Maxime Chevallier To: Andrew Lunn , davem@davemloft.net, Eric Dumazet , Jakub Kicinski , Paolo Abeni , Russell King , Heiner Kallweit Cc: Maxime Chevallier , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, thomas.petazzoni@bootlin.com Subject: [PATCH net-next] net: mdio: Kconfig: Group mdio controller drivers in a submenu Date: Sun, 12 Jul 2026 22:17:27 +0200 Message-ID: <20260712201739.260742-1-maxime.chevallier@bootlin.com> X-Mailer: git-send-email 2.55.0 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Last-TLS-Session-Version: TLSv1.3 Currently in menuconfig, all individual drivers for MDIO bus controllers are directly listed under Device drivers -> Network device support. Let's group them altogether in a submenu, while keeping the dependency on PHYLIB. All options under the new submenu match the drivers and infrastructure listed under drivers/net/mdio/Kconfig. No intended functional change besides the menuconfig ordering. Signed-off-by: Maxime Chevallier --- drivers/net/mdio/Kconfig | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/net/mdio/Kconfig b/drivers/net/mdio/Kconfig index e57121019153..b85c9fff9345 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 @@ -289,4 +290,4 @@ config MDIO_BUS_MUX_MMIOREG Currently, only 8/16/32 bits registers are supported. -endif +endmenu -- 2.55.0