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

Commit 921a86e0 authored by Krzysztof Halasa's avatar Krzysztof Halasa Committed by Greg Kroah-Hartman
Browse files

Staging: Add SBE 2T3E3 WAN driver

This is a driver for SBE Inc.'s dual port T3/E3 WAN cards. Based on
their original GPLed driver.

The original driver tarball is now accessible at
http://userweb.kernel.org/~chris/SBE_2T3_Linux_2.0c.tgz



It needs at least a new generic HDLC setup code (not yet written) before
moving to drivers/net/wan.

Signed-off-by: default avatarKrzysztof Hałasa <khc@pm.waw.pl>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent b0b57633
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -155,5 +155,7 @@ source "drivers/staging/quickstart/Kconfig"

source "drivers/staging/westbridge/Kconfig"

source "drivers/staging/sbe-2t3e3/Kconfig"

endif # !STAGING_EXCLUDE_BUILD
endif # STAGING
+1 −0
Original line number Diff line number Diff line
@@ -58,3 +58,4 @@ obj-$(CONFIG_SOLO6X10) += solo6x10/
obj-$(CONFIG_TIDSPBRIDGE)	+= tidspbridge/
obj-$(CONFIG_ACPI_QUICKSTART)	+= quickstart/
obj-$(CONFIG_WESTBRIDGE_ASTORIA)	+= westbridge/astoria/
obj-$(CONFIG_SBE_2T3E3)	+= sbe-2t3e3/
+894 −0

File added.

Preview size limit exceeded, changes collapsed.

+13 −0
Original line number Diff line number Diff line
config SBE_2T3E3
	tristate "SBE wanPMC-2T3E3 support"
	depends on HDLC && PCI
	help
	  Driver for wanPMC-2T3E3 cards by SBE Inc.

	  If you have such a card, say Y here and see
	  <http://www.kernel.org/pub/linux/utils/net/hdlc/>.

	  To compile this as a module, choose M here: the
	  module will be called sbe-2t3e3.

	  If unsure, say N.
+4 −0
Original line number Diff line number Diff line
obj-$(CONFIG_SBE_2T3E3) += sbe-2t3e3.o

sbe-2t3e3-objs := module.o netdev.o maps.o	\
	main.o cpld.o intr.o ctrl.o io.o dc.o exar7250.o exar7300.o
Loading