[PATCH] forcedeth: typecast cleanup

Someone went nuts in there.

Cc: Ayaz Abdulla <aabdulla@nvidia.com>
Cc: Manfred Spraul <manfred@colorfullife.com>
Cc: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Andrew Morton and committed by Linus Torvalds 479ceddd cd11acdd

+4 -4
+4 -4
drivers/net/forcedeth.c
··· 2761 2761 pci_push(base); 2762 2762 2763 2763 if (!using_multi_irqs(dev)) { 2764 - nv_nic_irq((int) 0, (void *) data, (struct pt_regs *) NULL); 2764 + nv_nic_irq(0, dev, NULL); 2765 2765 if (np->msi_flags & NV_MSI_X_ENABLED) 2766 2766 enable_irq(np->msi_x_entry[NV_MSI_X_VECTOR_ALL].vector); 2767 2767 else 2768 2768 enable_irq(dev->irq); 2769 2769 } else { 2770 2770 if (np->nic_poll_irq & NVREG_IRQ_RX_ALL) { 2771 - nv_nic_irq_rx((int) 0, (void *) data, (struct pt_regs *) NULL); 2771 + nv_nic_irq_rx(0, dev, NULL); 2772 2772 enable_irq(np->msi_x_entry[NV_MSI_X_VECTOR_RX].vector); 2773 2773 } 2774 2774 if (np->nic_poll_irq & NVREG_IRQ_TX_ALL) { 2775 - nv_nic_irq_tx((int) 0, (void *) data, (struct pt_regs *) NULL); 2775 + nv_nic_irq_tx(0, dev, NULL); 2776 2776 enable_irq(np->msi_x_entry[NV_MSI_X_VECTOR_TX].vector); 2777 2777 } 2778 2778 if (np->nic_poll_irq & NVREG_IRQ_OTHER) { 2779 - nv_nic_irq_other((int) 0, (void *) data, (struct pt_regs *) NULL); 2779 + nv_nic_irq_other(0, dev, NULL); 2780 2780 enable_irq(np->msi_x_entry[NV_MSI_X_VECTOR_OTHER].vector); 2781 2781 } 2782 2782 }