alistair23-linux/drivers/net/hamradio
Julia Lawall f40e063823 drivers/net/hamradio: Move a dereference below a NULL test
In each case, 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>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-12-16 15:43:29 -08:00
..
6pack.c drivers/net: Kill now superfluous ->last_rx stores. 2008-11-03 21:11:17 -08:00
baycom_epp.c drivers/net: Kill now superfluous ->last_rx stores. 2008-11-03 21:11:17 -08:00
baycom_par.c
baycom_ser_fdx.c drivers/net: use nr_irqs 2008-10-16 16:52:05 +02:00
baycom_ser_hdx.c
bpqether.c drivers/net: Kill now superfluous ->last_rx stores. 2008-11-03 21:11:17 -08:00
dmascc.c netdevice hamradio: Convert directly reference of netdev->priv 2008-11-20 01:02:05 -08:00
hdlcdrv.c drivers/net: Kill now superfluous ->last_rx stores. 2008-11-03 21:11:17 -08:00
Kconfig
Makefile
mkiss.c drivers/net/hamradio: Move a dereference below a NULL test 2008-12-16 15:43:29 -08:00
scc.c netdevice hamradio: Convert directly reference of netdev->priv 2008-11-20 01:02:05 -08:00
yam.c drivers/net: Kill now superfluous ->last_rx stores. 2008-11-03 21:11:17 -08:00
yam1200.h
yam9600.h
z8530.h