alx: Remove casts of pointer to same type
authorJoe Perches <joe@perches.com>
Mon, 24 Mar 2014 20:15:35 +0000 (13:15 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 26 Mar 2014 19:46:15 +0000 (15:46 -0400)
Casting a pointer to a pointer of the same type is pointless,
so remove these unnecessary casts.

Done via coccinelle script:

$ cat typecast_2.cocci
@@
type T;
T *foo;
@@

- (T *)foo
+ foo

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/atheros/alx/main.c

index 96f3edb6c7384d31948e08c9a8ae434917fc5931..17bb9ce96260df20eba44a9f215778a62c28373e 100644 (file)
@@ -535,7 +535,7 @@ static int alx_alloc_descriptors(struct alx_priv *alx)
        if (!alx->descmem.virt)
                goto out_free;
 
-       alx->txq.tpd = (void *)alx->descmem.virt;
+       alx->txq.tpd = alx->descmem.virt;
        alx->txq.tpd_dma = alx->descmem.dma;
 
        /* alignment requirement for next block */