Skip to content

Commit

Permalink
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/…
Browse files Browse the repository at this point in the history
…davem/net-2.6

Conflicts:
	drivers/net/igb/igb_main.c
	drivers/net/qlge/qlge_main.c
	drivers/net/wireless/ath9k/ath9k.h
	drivers/net/wireless/ath9k/core.h
	drivers/net/wireless/ath9k/hw.c
  • Loading branch information
davem330 committed Mar 17, 2009
2 parents bd257ed + f10023a commit 2d6a5e9
Show file tree
Hide file tree
Showing 40 changed files with 5,785 additions and 231 deletions.
9 changes: 9 additions & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -3888,6 +3888,15 @@ L: [email protected]
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: [email protected]
P: Subbu Seetharaman
M: [email protected]
L: [email protected]
W: http://www.serverengines.com
S: Supported

SFC NETWORK DRIVER
P: Steve Hodgson
P: Ben Hutchings
Expand Down
13 changes: 13 additions & 0 deletions drivers/net/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1040,6 +1040,17 @@ config NI65
To compile this driver as a module, choose M here. The module
will be called ni65.

config DNET
tristate "Dave ethernet support (DNET)"
depends on NET_ETHERNET
select PHYLIB
help
The Dave ethernet interface (DNET) is found on Qong Board FPGA.
Say Y to include support for the DNET chip.

To compile this driver as a module, choose M here: the module
will be called dnet.

source "drivers/net/tulip/Kconfig"

config AT1700
Expand Down Expand Up @@ -2618,6 +2629,8 @@ config QLGE

source "drivers/net/sfc/Kconfig"

source "drivers/net/benet/Kconfig"

endif # NETDEV_10000

source "drivers/net/tokenring/Kconfig"
Expand Down
2 changes: 2 additions & 0 deletions drivers/net/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down Expand Up @@ -232,6 +233,7 @@ obj-$(CONFIG_ENC28J60) += enc28j60.o

obj-$(CONFIG_XTENSA_XT2000_SONIC) += xtsonic.o

obj-$(CONFIG_DNET) += dnet.o
obj-$(CONFIG_MACB) += macb.o

obj-$(CONFIG_ARM) += arm/
Expand Down
7 changes: 7 additions & 0 deletions drivers/net/benet/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
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 changes: 7 additions & 0 deletions drivers/net/benet/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#
# 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

0 comments on commit 2d6a5e9

Please sign in to comment.