]> Pileus Git - ~andy/linux/commitdiff
net: netx-eth: remove unnecessary casting
authorJingoo Han <jg1.han@samsung.com>
Mon, 2 Sep 2013 23:54:04 +0000 (08:54 +0900)
committerDavid S. Miller <davem@davemloft.net>
Wed, 4 Sep 2013 04:27:27 +0000 (00:27 -0400)
Casting from 'void *' is unnecessary, because casting from 'void *'
to any pointer type is automatic.

Reported-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/netx-eth.c

index 235fd51100aabc18c477e1e1893e592c8e383765..e6f0a4366f905796777aac8fd1e006b177b83bfc 100644 (file)
@@ -390,7 +390,7 @@ static int netx_eth_drv_probe(struct platform_device *pdev)
 
        priv = netdev_priv(ndev);
 
-       pdata = (struct netxeth_platform_data *)dev_get_platdata(&pdev->dev);
+       pdata = dev_get_platdata(&pdev->dev);
        priv->xc = request_xc(pdata->xcno, &pdev->dev);
        if (!priv->xc) {
                dev_err(&pdev->dev, "unable to request xc engine\n");