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

Commit 479e2f44 authored by Subbu Seetharaman's avatar Subbu Seetharaman Committed by Greg Kroah-Hartman
Browse files

Staging: Add ServerEngines benet 10Gb ethernet driver

parent 127ce13c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -69,5 +69,7 @@ source "drivers/staging/otus/Kconfig"

source "drivers/staging/rt2860/Kconfig"

source "drivers/staging/benet/Kconfig"

endif # !STAGING_EXCLUDE_BUILD
endif # STAGING
+1 −0
Original line number Diff line number Diff line
@@ -17,3 +17,4 @@ obj-$(CONFIG_POCH) += poch/
obj-$(CONFIG_AGNX)		+= agnx/
obj-$(CONFIG_OTUS)		+= otus/
obj-$(CONFIG_RT2860)		+= rt2860/
obj-$(CONFIG_BENET)		+= benet/
+7 −0
Original line number Diff line number Diff line
config BENET
	tristate "ServerEngines 10Gb NIC - BladeEngine"
	depends on PCI && INET
	select INET_LRO
	help
	  This driver implements the NIC functionality for ServerEngines
	  10Gb network adapter BladeEngine (EC 3210).
+6 −0
Original line number Diff line number Diff line
SERVER ENGINES 10Gbe NIC - BLADE-ENGINE
P:	Subbu Seetharaman
M:	subbus@serverengines.com
L:	netdev@vger.kernel.org
W:	http://www.serverengines.com
S:	Supported
+9 −0
Original line number Diff line number Diff line
#
# Makefile to build the network driver for ServerEngine's BladeEngine.
#
EXTRA_CFLAGS = -I$(src)/hwlib -I$(src)/fw

obj-$(CONFIG_BENET) += benet.o

benet-y :=  be_init.o be_int.o be_netif.o be_ethtool.o \
	hwlib/funcobj.o hwlib/cq.o hwlib/eq.o hwlib/mpu.o hwlib/eth.o
Loading