original_kernel/arch/arm/common
Julia Lawall 442a902262 [ARM] arch/arm/common/sa1111.c: Correct error handling code
If it is reasonable to apply PTR_ERR to the result of calling clk_get, then
that result should first be tested with IS_ERR, not with !.

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

// <smpl>
@@
expression E,E1;
@@

if (
-   E == NULL
+   IS_ERR(E)
   ) { <+... when != E = E1
        PTR_ERR(E)
       ...+> }
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2008-12-14 11:03:46 +00:00
..
Kconfig [ARM] dmabounce requires ZONE_DMA 2008-10-17 14:00:43 +01:00
Makefile
dmabounce.c
gic.c
icst307.c
icst525.c
it8152.c [ARM] 5298/1: Drop desc_handle_irq() 2008-10-09 15:00:36 +01:00
locomo.c Merge branch 'pxa-all' into devel 2008-10-09 21:33:02 +01:00
sa1111.c [ARM] arch/arm/common/sa1111.c: Correct error handling code 2008-12-14 11:03:46 +00:00
scoop.c
sharpsl_param.c
sharpsl_pm.c [ARM] sharpsl_pm: fix compilation w/o CONFIG_PM 2008-10-30 22:10:15 +08:00
time-acorn.c
uengine.c
via82c505.c
vic.c