linux/arch/sh/drivers/dma
Julia Lawall b2d7c7f7a6 arch/sh/drivers/dma/dma-sh.c: Correct use of ! and &
In commit e6bafba5b4, a bug was fixed that
involved converting !x & y to !(x & y).  The code below shows the same
pattern, and thus should perhaps be fixed in the same way.

This is not tested and clearly changes the semantics, so it is only
something to consider.

The semantic patch that makes this change is as follows:
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@@ expression E1,E2; @@
(
  !E1 & !E2
|
- !E1 & E2
+ !(E1 & E2)
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
2008-02-27 10:28:48 +09:00
..
Kconfig sh: Add support for SH7721 CPU subtype. 2008-01-28 13:19:02 +09:00
Makefile sh: SH7760 DMABRG support. 2007-05-09 17:36:15 +09:00
dma-api.c sh: remove unneeded cast 2008-02-14 14:22:07 +09:00
dma-g2.c sh: Updates for IRQ handler changes. 2006-10-06 15:31:16 +09:00
dma-isa.c spelling fixes: arch/sh/ 2007-05-21 14:31:39 +09:00
dma-pvr2.c sh: Updates for IRQ handler changes. 2006-10-06 15:31:16 +09:00
dma-sh.c arch/sh/drivers/dma/dma-sh.c: Correct use of ! and & 2008-02-27 10:28:48 +09:00
dma-sh.h [PATCH] sh: DMA updates 2006-01-16 23:15:27 -08:00
dma-sysfs.c Driver core: change sysdev classes to use dynamic kobject names 2008-01-24 20:40:40 -08:00
dmabrg.c spelling fixes: arch/sh/ 2007-05-21 14:31:39 +09:00