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

Commit 10602db8 authored by David Rowe's avatar David Rowe Committed by Greg Kroah-Hartman
Browse files

Staging: add echo cancelation module



This is used by mISDN and Zaptel drivers.

From: Steve Underwood <steveu@coppice.org>
From: David Rowe <david@rowetel.com>
Cc: Tzafrir Cohen <tzafrir.cohen@xorcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 00b3ed16
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -39,4 +39,6 @@ source "drivers/staging/winbond/Kconfig"

source "drivers/staging/wlan-ng/Kconfig"

source "drivers/staging/echo/Kconfig"

endif # STAGING
+1 −0
Original line number Diff line number Diff line
@@ -8,3 +8,4 @@ obj-$(CONFIG_VIDEO_GO7007) += go7007/
obj-$(CONFIG_USB_IP_COMMON)	+= usbip/
obj-$(CONFIG_W35UND)		+= winbond/
obj-$(CONFIG_PRISM2_USB)	+= wlan-ng/
obj-$(CONFIG_ECHO)		+= echo/
+9 −0
Original line number Diff line number Diff line
config ECHO
	tristate "Line Echo Canceller support"
	default n
	---help---
	  This driver provides line echo cancelling support for mISDN and
	  Zaptel drivers.

	  To compile this driver as a module, choose M here. The module
	  will be called echo.
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_ECHO) += echo.o
+10 −0
Original line number Diff line number Diff line
TODO:
	- checkpatch.pl cleanups
	- Lindent
	- typedef removals
	- handle bit_operations.h (merge in or make part of common code?)
	- remove proc interface, only use echo.h interface (proc interface is
	  racy and not correct.)

Please send patches to Greg Kroah-Hartman <greg@kroah.com> and Cc: Steve
Underwood <steveu@coppice.org> and David Rowe <david@rowetel.com>
Loading