dect
/
linux-2.6
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
linux-2.6/drivers/net/wireless/prism54
Joe Perches 2c208890c6 wireless: Remove casts to same type
Adding casts of objects to the same type is unnecessary
and confusing for a human reader.

For example, this cast:

        int y;
        int *p = (int *)&y;

I used the coccinelle script below to find and remove these
unnecessary casts.  I manually removed the conversions this
script produces of casts with __force, __iomem and __user.

@@
type T;
T *p;
@@

-       (T *)p
+       p

Neatened the mwifiex_deauthenticate_infra function which
was doing odd things with array pointers and not using
is_zero_ether_addr.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2012-06-06 09:31:33 -07:00
..
Makefile
isl_38xx.c
isl_38xx.h
isl_ioctl.c Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless 2011-12-02 15:44:03 -05:00
isl_ioctl.h prism54: remove private driver ioctls 2011-11-30 15:08:35 -05:00
isl_oid.h drivers/net: use __packed annotation 2010-06-03 03:18:23 -07:00
islpci_dev.c prism54: remove private driver ioctls 2011-11-30 15:08:35 -05:00
islpci_dev.h net: remove interrupt.h inclusion from netdevice.h 2011-06-06 22:55:11 -07:00
islpci_eth.c wireless: Remove casts to same type 2012-06-06 09:31:33 -07:00
islpci_eth.h drivers/net: use __packed annotation 2010-06-03 03:18:23 -07:00
islpci_hotplug.c net: remove interrupt.h inclusion from netdevice.h 2011-06-06 22:55:11 -07:00
islpci_mgt.c Remove all #inclusions of asm/system.h 2012-03-28 18:30:03 +01:00
islpci_mgt.h drivers/net: use __packed annotation 2010-06-03 03:18:23 -07:00
oid_mgt.c prism54: replace open-coded ARRAY_SIZE with macro 2012-04-12 15:10:47 -04:00
oid_mgt.h
prismcompat.h