From nobody Fri Nov 29 04:42:13 2024 Received: from gauss.telenet-ops.be (gauss.telenet-ops.be [195.130.132.49]) (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 B15AA154C0E for ; Tue, 24 Sep 2024 10:25:13 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.132.49 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1727173515; cv=none; b=uoEhnahuWfx0j4AReIi38OcIgtbojMy0z146OnixDGfi4hBl953crIJEJGWCaBGNGLHLXAWwtedUYukyAdQipfyh3P0wP2KiT2+gqkvYq038yNqT+xD3ieUMVcriEeHgNP6BlNXhHCzRBA2PCU8Wtvhf5y6/WxgPbkJCNWaqUFQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1727173515; c=relaxed/simple; bh=BsX8pefkzF31t5V//DitLnaT98wyLGVu/CwKaLaw6y0=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=nzLYuEIs9xw5ByHVvyGteitHkm74dKLms6EU2x6f+2O6ukDAnHFoq8reDwTt1NtnXCUHWpKC29o5s0kiqRoaheItA8CsVSwqnzFNO+hR/6Exwsn80uYlcHyvcsL8K9iKHcYKeiGJn/RZuPp0AnnYlGEd7xoiqnkMCBlMV29dQw0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be; spf=none smtp.mailfrom=linux-m68k.org; arc=none smtp.client-ip=195.130.132.49 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux-m68k.org Received: from xavier.telenet-ops.be (xavier.telenet-ops.be [IPv6:2a02:1800:120:4::f00:14]) by gauss.telenet-ops.be (Postfix) with ESMTPS id 4XCbb55tRRz4wxCV for ; Tue, 24 Sep 2024 12:25:05 +0200 (CEST) Received: from ramsan.of.borg ([84.195.187.55]) by xavier.telenet-ops.be with cmsmtp id GAQx2D00W1C8whw01AQxc3; Tue, 24 Sep 2024 12:24:58 +0200 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1st2em-000Sjk-7Y; Tue, 24 Sep 2024 12:20:36 +0200 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1st2ep-00338A-M6; Tue, 24 Sep 2024 12:20:35 +0200 From: Geert Uytterhoeven To: Parthiban Veerasooran , "David S . Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Andrew Lunn Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] net: ethernet: Make OA_TC6 config symbol invisible Date: Tue, 24 Sep 2024 12:20:32 +0200 Message-Id: <9ebc58517c35a3afc4b19c3844da74984c561268.1727173168.git.geert+renesas@glider.be> X-Mailer: git-send-email 2.34.1 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 Content-Type: text/plain; charset="utf-8" There is no need to ask the user about enabling OPEN Alliance TC6 10BASE-T1x MAC-PHY support, as all drivers that use this library select the OA_TC6 symbol. Hence make the symbol invisible, unless when compile-testing. Fixes: aa58bec064ab1622 ("net: ethernet: oa_tc6: implement register write o= peration") Signed-off-by: Geert Uytterhoeven --- drivers/net/ethernet/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/Kconfig b/drivers/net/ethernet/Kconfig index 9a542e3c9b05d877..977b42bc1e8c1e88 100644 --- a/drivers/net/ethernet/Kconfig +++ b/drivers/net/ethernet/Kconfig @@ -159,7 +159,7 @@ config ETHOC Say Y here if you want to use the OpenCores 10/100 Mbps Ethernet MAC. =20 config OA_TC6 - tristate "OPEN Alliance TC6 10BASE-T1x MAC-PHY support" + tristate "OPEN Alliance TC6 10BASE-T1x MAC-PHY support" if COMPILE_TEST depends on SPI select PHYLIB help --=20 2.34.1