The patch titled drivers/isdn/hardware/eicon/message.c fix 'and' typo in eicons' AddInfo() has been added to the -mm tree. Its filename is fix-and-typo-in-eicons-addinfo.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: drivers/isdn/hardware/eicon/message.c fix 'and' typo in eicons' AddInfo() From: Roel Kluin <12o3l@xxxxxxxxxx> '!' has a higher priority than '&'. Signed-off-by: Roel Kluin <12o3l@xxxxxxxxxx> Cc: Karsten Keil <kkeil@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/isdn/hardware/eicon/message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/isdn/hardware/eicon/message.c~fix-and-typo-in-eicons-addinfo drivers/isdn/hardware/eicon/message.c --- a/drivers/isdn/hardware/eicon/message.c~fix-and-typo-in-eicons-addinfo +++ a/drivers/isdn/hardware/eicon/message.c @@ -9027,7 +9027,7 @@ static byte AddInfo(byte **add_i, /* facility is a nested structure */ /* FTY can be more than once */ - if(esc_chi[0] && !(esc_chi[esc_chi[0]])&0x7f ) + if (esc_chi[0] && !(esc_chi[esc_chi[0]] & 0x7f)) { add_i[0] = (byte *)"\x02\x02\x00"; /* use neither b nor d channel */ } _ Patches currently in -mm which might be from 12o3l@xxxxxxxxxx are git-acpi.patch git-dvb.patch git-mips.patch git-netdev-all.patch m68k-balance-ioremap-and-iounmap-in-m68k-atari-hades-pcic.patch sound-oss-tridentc-fix-incorrect-test-in-trident_ac97_set.patch fix-and-typo-in-eicons-addinfo.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html