Commit b0134b6a authored by Dave Jones's avatar Dave Jones Committed by Jaroslav Kysela

[PATCH] New synclink multiport driver.

Posted multiple times to l-k by Paul Fulghum
parent 61e17e54
...@@ -453,6 +453,17 @@ CONFIG_SYNCLINK ...@@ -453,6 +453,17 @@ CONFIG_SYNCLINK
The module will be called synclink.o. If you want to do that, say M The module will be called synclink.o. If you want to do that, say M
here. here.
CONFIG_SYNCLINKMP
Enable support for the SyncLink Multiport (2 or 4 ports)
serial adapter, running asynchronous and HDLC communications up
to 2.048Mbps. Each ports is independently selectable for
RS-232, V.35, RS-449, RS-530, and X.21
This driver may be built as a module ( = code which can be
inserted in and removed from the running kernel whenever you want).
The module will be called synclinkmp.o. If you want to do that, say M
here.
CONFIG_N_HDLC CONFIG_N_HDLC
Allows synchronous HDLC communications with tty device drivers that Allows synchronous HDLC communications with tty device drivers that
support synchronous HDLC such as the Microgate SyncLink adapter. support synchronous HDLC such as the Microgate SyncLink adapter.
......
...@@ -46,6 +46,7 @@ if [ "$CONFIG_SERIAL_NONSTANDARD" = "y" ]; then ...@@ -46,6 +46,7 @@ if [ "$CONFIG_SERIAL_NONSTANDARD" = "y" ]; then
dep_tristate ' Multi-Tech multiport card support (EXPERIMENTAL)' CONFIG_ISI m dep_tristate ' Multi-Tech multiport card support (EXPERIMENTAL)' CONFIG_ISI m
fi fi
tristate ' Microgate SyncLink card support' CONFIG_SYNCLINK tristate ' Microgate SyncLink card support' CONFIG_SYNCLINK
tristate ' SyncLink Multiport support' CONFIG_SYNCLINKMP
tristate ' HDLC line discipline support' CONFIG_N_HDLC tristate ' HDLC line discipline support' CONFIG_N_HDLC
tristate ' SDL RISCom/8 card support' CONFIG_RISCOM8 tristate ' SDL RISCom/8 card support' CONFIG_RISCOM8
tristate ' Specialix IO8+ card support' CONFIG_SPECIALIX tristate ' Specialix IO8+ card support' CONFIG_SPECIALIX
......
...@@ -143,6 +143,7 @@ obj-$(CONFIG_RISCOM8) += riscom8.o ...@@ -143,6 +143,7 @@ obj-$(CONFIG_RISCOM8) += riscom8.o
obj-$(CONFIG_ISI) += isicom.o obj-$(CONFIG_ISI) += isicom.o
obj-$(CONFIG_ESPSERIAL) += esp.o obj-$(CONFIG_ESPSERIAL) += esp.o
obj-$(CONFIG_SYNCLINK) += synclink.o obj-$(CONFIG_SYNCLINK) += synclink.o
obj-$(CONFIG_SYNCLINKMP) += synclinkmp.o
obj-$(CONFIG_N_HDLC) += n_hdlc.o obj-$(CONFIG_N_HDLC) += n_hdlc.o
obj-$(CONFIG_SPECIALIX) += specialix.o obj-$(CONFIG_SPECIALIX) += specialix.o
obj-$(CONFIG_AMIGA_BUILTIN_SERIAL) += amiserial.o obj-$(CONFIG_AMIGA_BUILTIN_SERIAL) += amiserial.o
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment