]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
ethernet: sfc: Add Kconfig entry for vendor Solarflare
authorTobias Klauser <tklauser@distanz.ch>
Tue, 20 Dec 2016 13:38:26 +0000 (14:38 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 20 Dec 2016 19:19:38 +0000 (14:19 -0500)
Since commit

  5a6681e22c14 ("sfc: separate out SFC4000 ("Falcon") support into new sfc-falcon driver")

there are two drivers for Solarflare devices, but both still show up
directly beneath "Ethernet driver support" in the Kconfig. Follow the
pattern of other vendors and group them beneath an own vendor Kconfig
entry for Solarflare.

Cc: Edward Cree <ecree@solarflare.com>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Acked-by: Edward Cree <ecree@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/Kconfig
drivers/net/ethernet/sfc/Kconfig

index 6e16e441f85e09596a437f78f5c7891f2c91988f..e4c28fed61d50866c5a7955d8de6ee458eae7834 100644 (file)
@@ -166,7 +166,6 @@ source "drivers/net/ethernet/seeq/Kconfig"
 source "drivers/net/ethernet/silan/Kconfig"
 source "drivers/net/ethernet/sis/Kconfig"
 source "drivers/net/ethernet/sfc/Kconfig"
-source "drivers/net/ethernet/sfc/falcon/Kconfig"
 source "drivers/net/ethernet/sgi/Kconfig"
 source "drivers/net/ethernet/smsc/Kconfig"
 source "drivers/net/ethernet/stmicro/Kconfig"
index 46f7be85f5a387ce96be02c66af18b21750b7210..2c032629c36929f20fe3a53866a045f202e487e5 100644 (file)
@@ -1,3 +1,20 @@
+#
+# Solarflare device configuration
+#
+
+config NET_VENDOR_SOLARFLARE
+       bool "Solarflare devices"
+       default y
+       ---help---
+         If you have a network (Ethernet) card belonging to this class, say Y.
+
+         Note that the answer to this question doesn't directly affect the
+         kernel: saying N will just cause the configurator to skip all
+         the questions about Solarflare devices. If you say Y, you will be asked
+         for your specific card in the following questions.
+
+if NET_VENDOR_SOLARFLARE
+
 config SFC
        tristate "Solarflare SFC9000/SFC9100-family support"
        depends on PCI
@@ -44,3 +61,7 @@ config SFC_MCDI_LOGGING
          Driver-Interface) commands and responses, allowing debugging of
          driver/firmware interaction.  The tracing is actually enabled by
          a sysfs file 'mcdi_logging' under the PCI device.
+
+source "drivers/net/ethernet/sfc/falcon/Kconfig"
+
+endif # NET_VENDOR_SOLARFLARE