Commit 26d15948 authored by Zhu Yanjun's avatar Zhu Yanjun Committed by David S. Miller

mlx5: 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: default avatarZhu Yanjun <yanjun.zhu@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e084a8b8
...@@ -1400,7 +1400,6 @@ static int init_one(struct pci_dev *pdev, ...@@ -1400,7 +1400,6 @@ static int init_one(struct pci_dev *pdev,
cleanup_srcu_struct(&priv->pfault_srcu); cleanup_srcu_struct(&priv->pfault_srcu);
clean_dev: clean_dev:
#endif #endif
pci_set_drvdata(pdev, NULL);
devlink_free(devlink); devlink_free(devlink);
return err; return err;
...@@ -1427,7 +1426,6 @@ static void remove_one(struct pci_dev *pdev) ...@@ -1427,7 +1426,6 @@ static void remove_one(struct pci_dev *pdev)
#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING #ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
cleanup_srcu_struct(&priv->pfault_srcu); cleanup_srcu_struct(&priv->pfault_srcu);
#endif #endif
pci_set_drvdata(pdev, NULL);
devlink_free(devlink); devlink_free(devlink);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment