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

Commit 64bef763 authored by Krzysztof Hałasa's avatar Krzysztof Hałasa
Browse files

WAN: Port LMC driver to generic HDLC



Signed-off-by: default avatarKrzysztof Hałasa <khc@pm.waw.pl>
parent 52e8a6a2
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ config COSA
#
config LANMEDIA
	tristate "LanMedia Corp. SSI/V.35, T1/E1, HSSI, T3 boards"
	depends on PCI && VIRT_TO_BUS
	depends on PCI && VIRT_TO_BUS && HDLC
	---help---
	  Driver for the following Lan Media family of serial boards:

@@ -78,9 +78,8 @@ config LANMEDIA
	  - LMC 5245 board connects directly to a T3 circuit saving the
	  additional external hardware.

	  To change setting such as syncPPP vs Cisco HDLC or clock source you
	  will need lmcctl.  It is available at <ftp://ftp.lanmedia.com/>
	  (broken link).
	  To change setting such as clock source you will need lmcctl.
	  It is available at <ftp://ftp.lanmedia.com/> (broken link).

	  To compile this driver as a module, choose M here: the
	  module will be called lmc.
+0 −1
Original line number Diff line number Diff line
@@ -26,7 +26,6 @@ obj-$(CONFIG_SEALEVEL_4021) += z85230.o sealevel.o
obj-$(CONFIG_COSA)		+= cosa.o
obj-$(CONFIG_FARSYNC)		+= farsync.o
obj-$(CONFIG_DSCC4)             += dscc4.o
obj-$(CONFIG_LANMEDIA)		+=		syncppp.o
obj-$(CONFIG_X25_ASY)		+= x25_asy.o

obj-$(CONFIG_LANMEDIA)		+= lmc/
+1 −1
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@
/*
 * IFTYPE defines
 */
#define LMC_PPP         1               /* use sppp interface */
#define LMC_PPP         1               /* use generic HDLC interface */
#define LMC_NET         2               /* use direct net interface */
#define LMC_RAW         3               /* use direct net interface */

Loading