kernel-fxtec-pro1x/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
baycom_epp.c
baycom_par.c
baycom_ser_fdx.c
baycom_ser_hdx.c
bpqether.c
dmascc.c netdevice hamradio: Convert directly reference of netdev->priv 2008-11-20 01:02:05 -08:00
hdlcdrv.c
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
yam1200.h
yam9600.h
z8530.h