]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ne2000: add the right platform device
authorAlan Cox <alan@linux.intel.com>
Tue, 20 Nov 2012 06:31:57 +0000 (06:31 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 20 Nov 2012 18:48:49 +0000 (13:48 -0500)
Without this udev doesn't have a way to key the ne device to the platform
device.

Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/8390/ne.c

index d04911d33b647080278f81678869c032e1a3c853..47618e505355ae91fc0ade4e50231ec780bcc56f 100644 (file)
@@ -813,6 +813,7 @@ static int __init ne_drv_probe(struct platform_device *pdev)
                dev->irq = irq[this_dev];
                dev->mem_end = bad[this_dev];
        }
+       SET_NETDEV_DEV(dev, &pdev->dev);
        err = do_ne_probe(dev);
        if (err) {
                free_netdev(dev);