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 bus: add Broadcom GISB bus arbiter timeout/error handler 2014-05-24 00:58:39 +02:00
imx-weim.c bus: imx-weim: support CS GPR configuration 2014-03-05 10:40:46 +08:00
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 bus: omap_l3_noc: Add AM4372 interconnect error data 2014-05-05 14:34:37 -05:00
omap_l3_noc.h bus: omap_l3_noc: Add AM4372 interconnect error data 2014-05-05 14:34:37 -05:00
omap_l3_smx.c drivers: bus: Move the OMAP interconnect driver to drivers/bus/ 2012-09-19 16:53:26 +02:00
omap_l3_smx.h drivers: bus: Move the OMAP interconnect driver to drivers/bus/ 2012-09-19 16:53:26 +02:00
omap-ocp2scp.c ARM: OMAP2+: Remove omap4 ocp2scp pdata 2013-05-30 13:09:31 -07:00
vexpress-config.c ARM: vexpress: refine dependencies for new code 2014-05-26 21:26:52 +02:00