linux_dsm_epyc7002/net/decnet
Joe Perches ea11073387 net: Remove casts of void *
Unnecessary casts of void * clutter the code.

These are the remainder casts after several specific
patches to remove netdev_priv and dev_priv.

Done via coccinelle script:

$ cat cast_void_pointer.cocci
@@
type T;
T *pt;
void *pv;
@@

- pt = (T *)pv;
+ pt = pv;

Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Paul Moore <paul.moore@hp.com>
Signed-off-by: David S. Miller <davem@conan.davemloft.net>
2011-06-16 23:19:27 -04:00
..
netfilter
af_decnet.c decnet: Convert to use flowidn where applicable. 2011-03-12 15:08:55 -08:00
dn_dev.c net: Remove casts of void * 2011-06-16 23:19:27 -04:00
dn_fib.c rtnetlink: Compute and store minimum ifinfo dump size 2011-06-09 20:38:07 -07:00
dn_neigh.c
dn_nsp_in.c Merge branch 'master' of /repos/git/net-next-2.6 2010-04-20 16:02:01 +02:00
dn_nsp_out.c
dn_route.c rtnetlink: Compute and store minimum ifinfo dump size 2011-06-09 20:38:07 -07:00
dn_rules.c
dn_table.c
dn_timer.c
Kconfig
Makefile
README
sysctl_net_decnet.c
TODO

                       Linux DECnet Project
                      ======================

The documentation for this kernel subsystem is available in the
Documentation/networking subdirectory of this distribution and also
on line at http://www.chygwyn.com/DECnet/

Steve Whitehouse <SteveW@ACM.org>