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

Commit f5cd7872 authored by Olof Johansson's avatar Olof Johansson Committed by Jeff Garzik
Browse files

PA Semi PWRficient Ethernet driver



Driver for the PA Semi PWRficient on-chip Ethernet (1/10G)

Basic enablement, will be complemented with performance enhancements
over time. PHY support will be added as well.

Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 1ee6dd77
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -2477,6 +2477,12 @@ L: orinoco-devel@lists.sourceforge.net
W:	http://www.nongnu.org/orinoco/
S:	Maintained

PA SEMI ETHERNET DRIVER
P:	Olof Johansson
M:	olof@lixom.net
L:	netdev@vger.kernel.org
S:	Maintained

PARALLEL PORT SUPPORT
P:	Phil Blundell
M:	philb@gnu.org
+7 −0
Original line number Diff line number Diff line
@@ -2493,6 +2493,13 @@ config NETXEN_NIC
	help
	  This enables the support for NetXen's Gigabit Ethernet card.

config PASEMI_MAC
	tristate "PA Semi 1/10Gbit MAC"
	depends on PPC64 && PCI
	help
	  This driver supports the on-chip 1/10Gbit Ethernet controller on
	  PA Semi's PWRficient line of chips.

endmenu

source "drivers/net/tokenring/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -195,6 +195,7 @@ obj-$(CONFIG_SMC91X) += smc91x.o
obj-$(CONFIG_SMC911X) += smc911x.o
obj-$(CONFIG_DM9000) += dm9000.o
obj-$(CONFIG_FEC_8XX) += fec_8xx/
obj-$(CONFIG_PASEMI_MAC) += pasemi_mac.o

obj-$(CONFIG_MACB) += macb.o

Loading