aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/korina.c
diff options
context:
space:
mode:
authorPhil Sutter <n0-1@freewrt.org>2009-01-14 21:46:51 -0800
committerDavid S. Miller <davem@davemloft.net>2009-01-15 08:28:17 -0800
commitb96ecfa689126d1e652ebd758da0b5b9b27dbd12 (patch)
tree9caed6a7f1c863f52173695064cffc0ab08b0b37 /drivers/net/korina.c
parentbnx2x: First slow path interrupt race (diff)
downloadlinux-dev-b96ecfa689126d1e652ebd758da0b5b9b27dbd12.tar.xz
linux-dev-b96ecfa689126d1e652ebd758da0b5b9b27dbd12.zip
korina: fix usage of driver_data
Using platform_set_drvdata() here makes no sense, since the driver_data field has already been filled with valuable data (i.e. the MAC address). Also having driver_data point to the net_device is rather pointless since struct korina_device contains an apropriate field for it. Signed-off-by: Phil Sutter <n0-1@freewrt.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/korina.c')
-rw-r--r--drivers/net/korina.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/korina.c b/drivers/net/korina.c
index 4a5580c1126a..fefb33db79a3 100644
--- a/drivers/net/korina.c
+++ b/drivers/net/korina.c
@@ -1089,7 +1089,6 @@ static int korina_probe(struct platform_device *pdev)
return -ENOMEM;
}
SET_NETDEV_DEV(dev, &pdev->dev);
- platform_set_drvdata(pdev, dev);
lp = netdev_priv(dev);
bif->dev = dev;