aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet
diff options
context:
space:
mode:
authorAlan Cox <alan@linux.intel.com>2012-11-20 06:31:57 +0000
committerDavid S. Miller <davem@davemloft.net>2012-11-20 13:48:49 -0500
commitda9da01d9199b5bb15289d0859053c9aa3a34ac0 (patch)
tree2ad99edabb756aaf07d37077ec7982edcda60b45 /drivers/net/ethernet
parentof/net/mdio-gpio: Fix pdev->id issue when using devicetrees. (diff)
downloadlinux-dev-da9da01d9199b5bb15289d0859053c9aa3a34ac0.tar.xz
linux-dev-da9da01d9199b5bb15289d0859053c9aa3a34ac0.zip
ne2000: add the right platform device
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>
Diffstat (limited to 'drivers/net/ethernet')
-rw-r--r--drivers/net/ethernet/8390/ne.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/8390/ne.c b/drivers/net/ethernet/8390/ne.c
index d04911d33b64..47618e505355 100644
--- a/drivers/net/ethernet/8390/ne.c
+++ b/drivers/net/ethernet/8390/ne.c
@@ -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);