mirror of https://gitee.com/openkylin/linux.git
mlx4: remove unnecessary pci_set_drvdata()
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not necessary to manually clear the device driver data to NULL. Cc: Joe Jin <joe.jin@oracle.com> Cc: Junxiao Bi <junxiao.bi@oracle.com> Signed-off-by: Zhu Yanjun <yanjun.zhu@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
dc503a8ad9
commit
e084a8b89c
|
@ -3782,7 +3782,6 @@ static int __mlx4_init_one(struct pci_dev *pdev, int pci_dev_data,
|
|||
|
||||
err_disable_pdev:
|
||||
mlx4_pci_disable_device(&priv->dev);
|
||||
pci_set_drvdata(pdev, NULL);
|
||||
return err;
|
||||
}
|
||||
|
||||
|
@ -3997,7 +3996,6 @@ static void mlx4_remove_one(struct pci_dev *pdev)
|
|||
devlink_unregister(devlink);
|
||||
kfree(dev->persist);
|
||||
devlink_free(devlink);
|
||||
pci_set_drvdata(pdev, NULL);
|
||||
}
|
||||
|
||||
static int restore_current_port_types(struct mlx4_dev *dev,
|
||||
|
|
Loading…
Reference in New Issue