From nobody Sat Jul 25 22:32:25 2026 Received: from smtpout-03.galae.net (smtpout-03.galae.net [185.246.85.4]) (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 0298517C203 for ; Sun, 12 Jul 2026 20:18:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.246.85.4 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783887522; cv=none; b=tgHfkM6+wuHXsTJKzzXvZNkbYXFDcGt94akXx9/xZR5SQK5EmS/Fd55S3VYwcB0LnlE94Lsvxo/8z2ZtQ5PA/XRTu+WwwNDo0FeFZihHIWkuXJIgdTKqRnS4Pq4ls++m/ZHlI6HHN1Nlvw6UD0P9NM4TPvEX/w+JURt6f+JneJA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783887522; c=relaxed/simple; bh=1gtzRhwUvVWuacdWiiucyl8zev/El3ZIMBUiSa7eCwo=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=V3PZv77f+86JWCxQ+kc2XY5JyvqfQHS5zlWjou8Lz2DknbWAE0LZkHHFZB8+aE0Kw7Nytxi1XVClA6bLZAbUScHgj8RQS3pYCiS7Jt8k9DQrIgUZu/2+j8J5q/5R2IAhn8f+HkwbxvPK5tUN4lX2Qbyi3sqwUrwC2IGZzYI+ruU= 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.246.85.4 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-03.galae.net (Postfix) with ESMTPS id 6DF284E40D6B; Sun, 12 Jul 2026 20:18:32 +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: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Last-TLS-Session-Version: TLSv1.3 Content-Type: text/plain; charset="utf-8" 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 # =20 -if PHYLIB +menu "MDIO controller drivers" + depends on PHYLIB =20 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. =20 =20 -endif +endmenu --=20 2.55.0