From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752199AbbCUBb1 (ORCPT ); Fri, 20 Mar 2015 21:31:27 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:39190 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751286AbbCUBbY (ORCPT ); Fri, 20 Mar 2015 21:31:24 -0400 From: Mathieu Olivari To: davem@davemloft.net, f.fainelli@gmail.com, linux@roeck-us.net, jiri@resnulli.us, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Mathieu Olivari Subject: [PATCH] net: dsa: make NET_DSA manually selectable from the config Date: Fri, 20 Mar 2015 18:31:03 -0700 Message-Id: <1426901463-31913-1-git-send-email-mathieu@codeaurora.org> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Change bd76a116707bd2381da36cf7c3183df11293f1d6 made all DSA drivers depend on NET_DSA rather than selecting them. However, as the only way to select this option was to actually select a driver, it made DSA impossible to enable at all. This patch adds an explicit entry which the user will have to enable prior selecting a driver. Signed-off-by: Mathieu Olivari --- net/dsa/Kconfig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/net/dsa/Kconfig b/net/dsa/Kconfig index 087e654..4f3cce1 100644 --- a/net/dsa/Kconfig +++ b/net/dsa/Kconfig @@ -5,9 +5,12 @@ config HAVE_NET_DSA # Drivers must select NET_DSA and the appropriate tagging format config NET_DSA - tristate + tristate "Distributed Switch Architecture" depends on HAVE_NET_DSA && NET_SWITCHDEV select PHYLIB + ---help--- + Say Y if you want to enable support for the hardware switches supported + by the Distributed Switch Architecture. if NET_DSA -- 1.9.1