From: Wei Yongjun Date: Mon, 11 Nov 2013 06:16:16 +0000 (+0800) Subject: macmace: add missing platform_set_drvdata() in mace_probe() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=06a2feb9e3bd0d2d555ccb19607ff5583cfa03e8;p=linux-beck.git macmace: add missing platform_set_drvdata() in mace_probe() Add missing platform_set_drvdata() in mace_probe(), otherwise calling platform_get_drvdata() in mac_mace_device_remove() may returns NULL. Signed-off-by: Wei Yongjun Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/apple/macmace.c b/drivers/net/ethernet/apple/macmace.c index 4ce8ceb62205..58a200df4c35 100644 --- a/drivers/net/ethernet/apple/macmace.c +++ b/drivers/net/ethernet/apple/macmace.c @@ -211,6 +211,7 @@ static int mace_probe(struct platform_device *pdev) mp = netdev_priv(dev); mp->device = &pdev->dev; + platform_set_drvdata(pdev, dev); SET_NETDEV_DEV(dev, &pdev->dev); dev->base_addr = (u32)MACE_BASE;