mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 14:36:43 +07:00
staging: unisys: visorbus: Remove unnecessary dev_set_drvdata()
Unnecessary dev_set_drvdata() has been removed since the driver core clears the driver data to NULL after device release or on probe failure. There is no need to manually clear the device driver data to NULL. The Coccinelle semantic patch used to make this change is as follows: //<smpl> @@ struct device *dev; @@ - dev_set_drvdata(dev, NULL); //</smpl> Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
785d43077f
commit
8247bcb998
@ -221,7 +221,6 @@ visorbus_release_busdevice(struct device *xdev)
|
||||
{
|
||||
struct visor_device *dev = dev_get_drvdata(xdev);
|
||||
|
||||
dev_set_drvdata(xdev, NULL);
|
||||
kfree(dev);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user