aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/isdn
diff options
context:
space:
mode:
authorRoel Kluin <12o3l@tiscali.nl>2008-02-06 04:38:30 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-06 13:41:12 -0500
commit3eb1a6f384ef87c48aa3bdd942732890466b040e (patch)
tree39f4121c3bfd2a42e38ca4ac3e61715f58a2dd06 /drivers/isdn
parentee51ef0ecbb68fdd7beab8f7b0a20eebe6fd0a62 (diff)
drivers/isdn/hardware/eicon/message.c fix 'and' typo in eicons' AddInfo()
'!' has a higher priority than '&'. Signed-off-by: Roel Kluin <12o3l@tiscali.nl> Cc: Karsten Keil <kkeil@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/isdn')
-rw-r--r--drivers/isdn/hardware/eicon/message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/hardware/eicon/message.c b/drivers/isdn/hardware/eicon/message.c
index b9177ca4369a..1ff98e7eb794 100644
--- a/drivers/isdn/hardware/eicon/message.c
+++ b/drivers/isdn/hardware/eicon/message.c
@@ -9027,7 +9027,7 @@ static byte AddInfo(byte **add_i,
9027 /* facility is a nested structure */ 9027 /* facility is a nested structure */
9028 /* FTY can be more than once */ 9028 /* FTY can be more than once */
9029 9029
9030 if(esc_chi[0] && !(esc_chi[esc_chi[0]])&0x7f ) 9030 if (esc_chi[0] && !(esc_chi[esc_chi[0]] & 0x7f))
9031 { 9031 {
9032 add_i[0] = (byte *)"\x02\x02\x00"; /* use neither b nor d channel */ 9032 add_i[0] = (byte *)"\x02\x02\x00"; /* use neither b nor d channel */
9033 } 9033 }