Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6b7c5b94 authored by Sathya Perla's avatar Sathya Perla Committed by David S. Miller
Browse files

net: Add be2net driver.

parent 2c5849ea
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -3880,6 +3880,15 @@ L: linux-ide@vger.kernel.org
T:	git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
S:	Supported

SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
P:	Sathya Perla
M:	sathyap@serverengines.com
P:      Subbu Seetharaman
M:      subbus@serverengines.com
L:      netdev@vger.kernel.org
W:      http://www.serverengines.com
S:      Supported

SFC NETWORK DRIVER
P:	Steve Hodgson
P:	Ben Hutchings
+2 −0
Original line number Diff line number Diff line
@@ -2630,6 +2630,8 @@ config QLGE

source "drivers/net/sfc/Kconfig"

source "drivers/net/benet/Kconfig"

endif # NETDEV_10000

source "drivers/net/tokenring/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@ obj-$(CONFIG_GIANFAR) += gianfar_driver.o
obj-$(CONFIG_TEHUTI) += tehuti.o
obj-$(CONFIG_ENIC) += enic/
obj-$(CONFIG_JME) += jme.o
obj-$(CONFIG_BE2NET) += benet/

gianfar_driver-objs := gianfar.o \
		gianfar_ethtool.o \
+7 −0
Original line number Diff line number Diff line
config BE2NET
	tristate "ServerEngines' 10Gbps NIC - BladeEngine 2"
	depends on PCI && INET
	select INET_LRO
	help
	This driver implements the NIC functionality for ServerEngines'
	10Gbps network adapter - BladeEngine 2.
+7 −0
Original line number Diff line number Diff line
#
# Makefile to build the network driver for ServerEngine's BladeEngine.
#

obj-$(CONFIG_BE2NET) += be2net.o

be2net-y :=  be_main.o be_cmds.o be_ethtool.o
Loading