diff options
author | Joe Perches <joe@perches.com> | 2011-06-16 15:08:06 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-06-21 18:48:29 -0400 |
commit | 43d620c82985b19008d87a437b4cf83f356264f7 (patch) | |
tree | 8ea6d9d1ab5d36e7bc130b5189997e12edb01fb6 /drivers/net/bna | |
parent | dadbe85ac47f180fa1e3ef93b276ab7938b1a98b (diff) |
drivers/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 (and a little editing):
$ 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: Sjur Brændeland <sjur.brandeland@stericsson.com>
Acked-By: Chris Snook <chris.snook@gmail.com>
Acked-by: Jon Mason <jdmason@kudzu.us>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: David Dillow <dave@thedillows.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bna')
-rw-r--r-- | drivers/net/bna/bfa_cee.c | 2 | ||||
-rw-r--r-- | drivers/net/bna/cna.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/bna/bfa_cee.c b/drivers/net/bna/bfa_cee.c index f7b789a3b217..dcfbf08bcf43 100644 --- a/drivers/net/bna/bfa_cee.c +++ b/drivers/net/bna/bfa_cee.c | |||
@@ -236,7 +236,7 @@ static void | |||
236 | bfa_cee_hbfail(void *arg) | 236 | bfa_cee_hbfail(void *arg) |
237 | { | 237 | { |
238 | struct bfa_cee *cee; | 238 | struct bfa_cee *cee; |
239 | cee = (struct bfa_cee *) arg; | 239 | cee = arg; |
240 | 240 | ||
241 | if (cee->get_attr_pending == true) { | 241 | if (cee->get_attr_pending == true) { |
242 | cee->get_attr_status = BFA_STATUS_FAILED; | 242 | cee->get_attr_status = BFA_STATUS_FAILED; |
diff --git a/drivers/net/bna/cna.h b/drivers/net/bna/cna.h index bbd39dc65972..3c47dc52b423 100644 --- a/drivers/net/bna/cna.h +++ b/drivers/net/bna/cna.h | |||
@@ -74,7 +74,7 @@ typedef struct mac { u8 mac[MAC_ADDRLEN]; } mac_t; | |||
74 | bfa_q_next(_q) = bfa_q_next(*((struct list_head **) _qe)); \ | 74 | bfa_q_next(_q) = bfa_q_next(*((struct list_head **) _qe)); \ |
75 | bfa_q_qe_init(*((struct list_head **) _qe)); \ | 75 | bfa_q_qe_init(*((struct list_head **) _qe)); \ |
76 | } else { \ | 76 | } else { \ |
77 | *((struct list_head **) (_qe)) = (struct list_head *) NULL; \ | 77 | *((struct list_head **)(_qe)) = NULL; \ |
78 | } \ | 78 | } \ |
79 | } | 79 | } |
80 | 80 | ||