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

Commit 3d396eb1 authored by Amit S. Kale's avatar Amit S. Kale Committed by Jeff Garzik
Browse files

Add NetXen 1G/10G ethernet driver.



Signed-off-by: default avatarAmit S. Kale <amitkale@netxen.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent f3d1fca3
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -2132,6 +2132,13 @@ L: netdev@vger.kernel.org
T:	git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
S:	Maintained

NETXEN (1/10) GbE SUPPORT
P:	Amit S. Kale
M:	amitkale@netxen.com
L:	netdev@vger.kernel.org
W:	http://www.netxen.com
S:	Supported

IPVS
P:	Wensong Zhang
M:	wensong@linux-vs.org
+5 −0
Original line number Diff line number Diff line
@@ -2447,6 +2447,11 @@ config MYRI10GE
	  <file:Documentation/networking/net-modules.txt>.  The module
	  will be called myri10ge.

config NETXEN_NIC
	tristate "NetXen Multi port (1/10) Gigabit Ethernet NIC"
	help
	  This enables the support for NetXen's Gigabit Ethernet card.

endmenu

source "drivers/net/tokenring/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -213,3 +213,4 @@ obj-$(CONFIG_NETCONSOLE) += netconsole.o

obj-$(CONFIG_FS_ENET) += fs_enet/

obj-$(CONFIG_NETXEN_NIC) += netxen/
+35 −0
Original line number Diff line number Diff line
# Copyright (C) 2003 - 2006 NetXen, Inc.
# All rights reserved.
# 
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#                            
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#                                   
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston,
# MA  02111-1307, USA.
# 
# The full GNU General Public License is included in this distribution
# in the file called LICENSE.
# 
# Contact Information:
#    info@netxen.com
# NetXen,
# 3965 Freedom Circle, Fourth floor,
# Santa Clara, CA 95054
#
# Makefile for the NetXen NIC Driver
#


obj-$(CONFIG_NETXEN_NIC) := netxen_nic.o

netxen_nic-y := netxen_nic_hw.o netxen_nic_main.o netxen_nic_init.o \
	netxen_nic_isr.o netxen_nic_ethtool.o netxen_nic_niu.o
+910 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading