aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/isdn/mISDN
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/isdn/mISDN')
-rw-r--r--drivers/isdn/mISDN/Kconfig10
-rw-r--r--drivers/isdn/mISDN/l1oip_codec.c2
2 files changed, 7 insertions, 5 deletions
diff --git a/drivers/isdn/mISDN/Kconfig b/drivers/isdn/mISDN/Kconfig
index 4938355c4072..1747a02a019a 100644
--- a/drivers/isdn/mISDN/Kconfig
+++ b/drivers/isdn/mISDN/Kconfig
@@ -14,13 +14,15 @@ config MISDN_DSP
14 depends on MISDN 14 depends on MISDN
15 help 15 help
16 Enable support for digital audio processing capability. 16 Enable support for digital audio processing capability.
17
17 This module may be used for special applications that require 18 This module may be used for special applications that require
18 cross connecting of bchannels, conferencing, dtmf decoding 19 cross connecting of bchannels, conferencing, dtmf decoding,
19 echo cancelation, tone generation, and Blowfish encryption and 20 echo cancelation, tone generation, and Blowfish encryption and
20 decryption. 21 decryption. It may use hardware features if available.
21 It may use hardware features if available. 22
22 E.g. it is required for PBX4Linux. Go to http://isdn.eversberg.eu 23 E.g. it is required for PBX4Linux. Go to http://isdn.eversberg.eu
23 and get more informations about this module and it's usage. 24 and get more information about this module and its usage.
25
24 If unsure, say 'N'. 26 If unsure, say 'N'.
25 27
26config MISDN_L1OIP 28config MISDN_L1OIP
diff --git a/drivers/isdn/mISDN/l1oip_codec.c b/drivers/isdn/mISDN/l1oip_codec.c
index 2ec4b28d9edc..e4ecba3d48df 100644
--- a/drivers/isdn/mISDN/l1oip_codec.c
+++ b/drivers/isdn/mISDN/l1oip_codec.c
@@ -331,7 +331,7 @@ l1oip_4bit_alloc(int ulaw)
331 /* alloc conversion tables */ 331 /* alloc conversion tables */
332 table_com = vmalloc(65536); 332 table_com = vmalloc(65536);
333 table_dec = vmalloc(512); 333 table_dec = vmalloc(512);
334 if (!table_com | !table_dec) { 334 if (!table_com || !table_dec) {
335 l1oip_4bit_free(); 335 l1oip_4bit_free();
336 return -ENOMEM; 336 return -ENOMEM;
337 } 337 }