Commit 749efb1e authored by Dimitris Michailidis's avatar Dimitris Michailidis Committed by David S. Miller
Browse files

net/fungible: Kconfig, Makefiles, and MAINTAINERS



Hook up the new driver to configuration and build.

Signed-off-by: default avatarDimitris Michailidis <dmichail@fungible.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a3662007
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -7931,6 +7931,12 @@ L: platform-driver-x86@vger.kernel.org
S:	Maintained
F:	drivers/platform/x86/fujitsu-tablet.c
FUNGIBLE ETHERNET DRIVERS
M:	Dimitris Michailidis <dmichail@fungible.com>
L:	netdev@vger.kernel.org
S:	Supported
F:	drivers/net/ethernet/fungible/
FUSE: FILESYSTEM IN USERSPACE
M:	Miklos Szeredi <miklos@szeredi.hu>
L:	linux-fsdevel@vger.kernel.org
+1 −0
Original line number Diff line number Diff line
@@ -78,6 +78,7 @@ source "drivers/net/ethernet/ezchip/Kconfig"
source "drivers/net/ethernet/faraday/Kconfig"
source "drivers/net/ethernet/freescale/Kconfig"
source "drivers/net/ethernet/fujitsu/Kconfig"
source "drivers/net/ethernet/fungible/Kconfig"
source "drivers/net/ethernet/google/Kconfig"
source "drivers/net/ethernet/hisilicon/Kconfig"
source "drivers/net/ethernet/huawei/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@ obj-$(CONFIG_NET_VENDOR_EZCHIP) += ezchip/
obj-$(CONFIG_NET_VENDOR_FARADAY) += faraday/
obj-$(CONFIG_NET_VENDOR_FREESCALE) += freescale/
obj-$(CONFIG_NET_VENDOR_FUJITSU) += fujitsu/
obj-$(CONFIG_NET_VENDOR_FUNGIBLE) += fungible/
obj-$(CONFIG_NET_VENDOR_GOOGLE) += google/
obj-$(CONFIG_NET_VENDOR_HISILICON) += hisilicon/
obj-$(CONFIG_NET_VENDOR_HUAWEI) += huawei/
+27 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
#
# Fungible network driver configuration
#

config NET_VENDOR_FUNGIBLE
	bool "Fungible devices"
	default y
	help
	  If you have a Fungible network device, 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 Fungible cards. If you say Y, you will be asked
	  for your specific card in the following questions.

if NET_VENDOR_FUNGIBLE

config FUN_CORE
	tristate
	help
	  A service module offering basic common services to Fungible
	  device drivers.

source "drivers/net/ethernet/fungible/funeth/Kconfig"

endif # NET_VENDOR_FUNGIBLE
+7 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
#
# Makefile for the Fungible network device drivers.
#

obj-$(CONFIG_FUN_CORE) += funcore/
obj-$(CONFIG_FUN_ETH) += funeth/
Loading