Ver código fonte

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 <yongjun_wei@trendmicro.com.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
Wei Yongjun 11 anos atrás
pai
commit
06a2feb9e3
1 arquivos alterados com 1 adições e 0 exclusões
  1. 1 0
      drivers/net/ethernet/apple/macmace.c

+ 1 - 0
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;