aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/yellowfin.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2011-06-16 15:08:06 -0400
committerDavid S. Miller <davem@davemloft.net>2011-06-21 18:48:29 -0400
commit43d620c82985b19008d87a437b4cf83f356264f7 (patch)
tree8ea6d9d1ab5d36e7bc130b5189997e12edb01fb6 /drivers/net/yellowfin.c
parentdadbe85ac47f180fa1e3ef93b276ab7938b1a98b (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/yellowfin.c')
-rw-r--r--drivers/net/yellowfin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/yellowfin.c b/drivers/net/yellowfin.c
index ec47e22fa18..3e5ac60b89a 100644
--- a/drivers/net/yellowfin.c
+++ b/drivers/net/yellowfin.c
@@ -442,19 +442,19 @@ static int __devinit yellowfin_init_one(struct pci_dev *pdev,
442 ring_space = pci_alloc_consistent(pdev, TX_TOTAL_SIZE, &ring_dma); 442 ring_space = pci_alloc_consistent(pdev, TX_TOTAL_SIZE, &ring_dma);
443 if (!ring_space) 443 if (!ring_space)
444 goto err_out_cleardev; 444 goto err_out_cleardev;
445 np->tx_ring = (struct yellowfin_desc *)ring_space; 445 np->tx_ring = ring_space;
446 np->tx_ring_dma = ring_dma; 446 np->tx_ring_dma = ring_dma;
447 447
448 ring_space = pci_alloc_consistent(pdev, RX_TOTAL_SIZE, &ring_dma); 448 ring_space = pci_alloc_consistent(pdev, RX_TOTAL_SIZE, &ring_dma);
449 if (!ring_space) 449 if (!ring_space)
450 goto err_out_unmap_tx; 450 goto err_out_unmap_tx;
451 np->rx_ring = (struct yellowfin_desc *)ring_space; 451 np->rx_ring = ring_space;
452 np->rx_ring_dma = ring_dma; 452 np->rx_ring_dma = ring_dma;
453 453
454 ring_space = pci_alloc_consistent(pdev, STATUS_TOTAL_SIZE, &ring_dma); 454 ring_space = pci_alloc_consistent(pdev, STATUS_TOTAL_SIZE, &ring_dma);
455 if (!ring_space) 455 if (!ring_space)
456 goto err_out_unmap_rx; 456 goto err_out_unmap_rx;
457 np->tx_status = (struct tx_status_words *)ring_space; 457 np->tx_status = ring_space;
458 np->tx_status_dma = ring_dma; 458 np->tx_status_dma = ring_dma;
459 459
460 if (dev->mem_start) 460 if (dev->mem_start)