kernel-ark/drivers/staging/agnx
Julia Lawall 6bf676723a Staging: agnx: Move a dereference below a NULL test
If the NULL test is necessary, then the dereference should be moved below
the NULL test.

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

// <smpl>
@@
type T;
expression E;
identifier i,fld;
statement S;
@@

- T i = E->fld;
+ T i;
  ... when != E
      when != i
  if (E == NULL) S
+ i = E->fld;
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Cc: YanBo <dreamfly281@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2009-04-03 14:53:26 -07:00
..
agnx.h staging: agnx: drivers/staging/agnx/agnx.h needs <linux/io.h> 2009-01-28 15:49:05 -08:00
debug.h
Kconfig
Makefile
pci.c Staging: agnx: Move a dereference below a NULL test 2009-04-03 14:53:26 -07:00
phy.c Staging: agnx: fix build warnings 2009-01-06 13:52:09 -08:00
phy.h
rf.c
sta.c
sta.h
table.c
table.h
TODO
xmit.c Staging: agnx: fix build errors due to rate control API changes 2009-01-06 13:52:09 -08:00
xmit.h