linux/drivers/bus
Himangi Saraogi fc5130de83 drivers: CCI: Correct use of ! and &
In commit ae91d60ba8, 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.

The Coccinelle semantic patch that makes this change is as follows:

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

Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Acked-by: Punit Agrawal <punit.agrawal@arm.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
2014-07-30 22:58:54 -07:00
..
arm-cci.c drivers: CCI: Correct use of ! and & 2014-07-30 22:58:54 -07:00
brcmstb_gisb.c
imx-weim.c
Kconfig bus/arm-cci: add dependency on OF && CPU_V7 2014-06-17 17:09:35 +02:00
Makefile ARM: SoC driver changes 2014-06-02 16:35:49 -07:00
mvebu-mbus.c ARM: SoC updates for 3.16 (part 1) 2014-06-02 16:15:12 -07:00
omap_l3_noc.c
omap_l3_noc.h
omap_l3_smx.c
omap_l3_smx.h
omap-ocp2scp.c
vexpress-config.c ARM: vexpress: refine dependencies for new code 2014-05-26 21:26:52 +02:00