-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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: Krzysztof Hałasa <khc@pm.waw.pl> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
- Loading branch information
Krzysztof Halasa
authored and
Greg Kroah-Hartman
committed
Aug 31, 2010
1 parent
b0b5763
commit 921a86e
Showing
18 changed files
with
4,294 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
TODO: | ||
- additional cleaning and tests | ||
- wait for the new configuration interface in generic HDLC layer and | ||
when available, convert the driver to it | ||
|
||
Please send patches to Krzysztof Halasa <khc@pm.waw.pl>. |
Oops, something went wrong.