summaryrefslogtreecommitdiff
path: root/drivers/dahdi/wctc4xxp/Makefile
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2008-08-06 18:09:58 +0000
committerShaun Ruffell <sruffell@digium.com>2008-08-06 18:09:58 +0000
commitd6d510de31ba47bbb0db8d1d7be0493c21476360 (patch)
treed83edd7008142c8d6c7625b7dde044277925a84f /drivers/dahdi/wctc4xxp/Makefile
parent58c5a423696e0828cd6f0c02cdd2a771a444aa4b (diff)
A significant change to the DAHDI transcoder interface and the wctc4xxp
driver which breaks backwards compatibility. Basically, I've replaced the memory mapped interface with a read/write interface that allows codec_dahdi to communicate with the hardware transcoder the exact size of the packet to be transcoded. This eliminates issues with remote devices that send G729.B CNG packets even though asterisk does not support them. From a user standpoint: - The transcoder drivers are much more robust in light of system / external conditions. From a developer standpoint: - DAHDI_TRANSCODE_OP is no longer supported, instead use DAHDI_TC_ALLOCATE, DAHDI_TC_GETINFO, and write/read. - Memory and stack usage is reduced (stack usage could still be reduced some more by continuing the process of getting rid of the users of wctc4xxp_send_cmd and wctc4xxp_create_cmd). - If more than one card is in the system channels will be allocated in a round-robin fashion from all available cards, reducing contention for the supervisor channel. - There is no longer a tc400b workqueue created that will not show up in the process list. - Commands and their responses are now explicitly matched up which elimated certain errors caused by unsolicited messages from the transcoder confusing the driver. - There is now an option to export a network interface for capturing traffic to/from the hardware transcoder. - codec_test has been removed from the dadhi/linux package. git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@4717 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'drivers/dahdi/wctc4xxp/Makefile')
-rw-r--r--drivers/dahdi/wctc4xxp/Makefile9
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/dahdi/wctc4xxp/Makefile b/drivers/dahdi/wctc4xxp/Makefile
index cf5501f..866fdae 100644
--- a/drivers/dahdi/wctc4xxp/Makefile
+++ b/drivers/dahdi/wctc4xxp/Makefile
@@ -3,14 +3,5 @@ ifdef KBUILD_EXTMOD
# For newer kernels, Kbuild will be included directly by the kernel
# build system.
include $(src)/Kbuild
-
else
-
-tests: codec_test
-
-codec_test: codec_test.c ../../include/dahdi/kernel.h ../../include/dahdi/user.h
- $(CC) -o $@ $< $(CFLAGS)
-
-clean:
- rm -rf codec_test
endif