linux/drivers/atm
Johannes Berg d58ff35122 networking: make skb_push & __skb_push return void pointers
It seems like a historic accident that these return unsigned char *,
and in many places that means casts are required, more often than not.

Make these functions return void * and remove all the casts across
the tree, adding a (u8 *) cast only where the unsigned char pointer
was used directly, all done with the following spatch:

    @@
    expression SKB, LEN;
    typedef u8;
    identifier fn = { skb_push, __skb_push, skb_push_rcsum };
    @@
    - *(fn(SKB, LEN))
    + *(u8 *)fn(SKB, LEN)

    @@
    expression E, SKB, LEN;
    identifier fn = { skb_push, __skb_push, skb_push_rcsum };
    type T;
    @@
    - E = ((T *)(fn(SKB, LEN)))
    + E = fn(SKB, LEN)

    @@
    expression SKB, LEN;
    identifier fn = { skb_push, __skb_push, skb_push_rcsum };
    @@
    - fn(SKB, LEN)[0]
    + *(u8 *)fn(SKB, LEN)

Note that the last part there converts from push(...)[0] to the
more idiomatic *(u8 *)push(...).

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-06-16 11:48:40 -04:00
..
.gitignore
adummy.c Replace <asm/uaccess.h> with <linux/uaccess.h> globally 2016-12-24 11:46:01 -08:00
ambassador.c ambassador: use setup_timer 2017-03-12 23:47:16 -07:00
ambassador.h ATM: Delete no use FILL_RX_POOLS_IN_BH marco 2011-07-08 09:06:31 -07:00
atmtcp.c networking: make skb_put & friends return void pointers 2017-06-16 11:48:39 -04:00
eni.c lib/vsprintf.c: remove %Z support 2017-02-27 18:43:47 -08:00
eni.h eni: fix driver remove function and driver probe error path. 2012-03-16 23:13:20 -07:00
firestream.c lib/vsprintf.c: remove %Z support 2017-02-27 18:43:47 -08:00
firestream.h atm: firestream: remove duplicate define 2013-10-21 18:46:46 -04:00
fore200e.c networking: introduce and use skb_put_data() 2017-06-16 11:48:37 -04:00
fore200e.h Fix common misspellings 2011-03-31 11:26:23 -03:00
he.c networking: introduce and use skb_put_data() 2017-06-16 11:48:37 -04:00
he.h atm: remove deprecated use of pci api 2015-01-18 00:28:41 -05:00
horizon.c sched/headers: Prepare to move signal wakeup & sigpending methods from <linux/sched.h> into <linux/sched/signal.h> 2017-03-02 08:42:32 +01:00
horizon.h
idt77105.c Replace <asm/uaccess.h> with <linux/uaccess.h> globally 2016-12-24 11:46:01 -08:00
idt77105.h
idt77252_tables.h
idt77252.c networking: introduce and use skb_put_data() 2017-06-16 11:48:37 -04:00
idt77252.h Fix common misspellings 2011-03-31 11:26:23 -03:00
iphase.c scripts/spelling.txt: add "followings" pattern and fix typo instances 2017-02-27 18:43:47 -08:00
iphase.h scripts/spelling.txt: add "followings" pattern and fix typo instances 2017-02-27 18:43:47 -08:00
Kconfig
lanai.c lib/vsprintf.c: remove %Z support 2017-02-27 18:43:47 -08:00
Makefile
midway.h drivers: atm: eni: rename macro DAUGTHER_ID to fix spelling mistake 2016-12-29 12:07:01 -05:00
nicstar.c idr: Return the deleted entry from idr_remove 2017-02-13 21:44:03 -05:00
nicstar.h
nicstarmac.c
nicstarmac.copyright
solos-attrlist.c
solos-pci.c networking: make skb_push & __skb_push return void pointers 2017-06-16 11:48:40 -04:00
suni.c Replace <asm/uaccess.h> with <linux/uaccess.h> globally 2016-12-24 11:46:01 -08:00
suni.h
tonga.h
uPD98401.h
uPD98402.c Replace <asm/uaccess.h> with <linux/uaccess.h> globally 2016-12-24 11:46:01 -08:00
uPD98402.h
zatm.c Replace <asm/uaccess.h> with <linux/uaccess.h> globally 2016-12-24 11:46:01 -08:00
zatm.h
zeprom.h