Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f75529fd authored by Wei Yongjun's avatar Wei Yongjun Committed by Mark Brown
Browse files

spi: jcore: remove unnecessary platform_set_drvdata()



The driver core clears the driver data to NULL after device_release
or on probe failure. Thus, it is not needed to manually clear the
device driver data to NULL.

Signed-off-by: default avatarWei Yongjun <weiyj.lk@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 2cb1b3b3
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -206,7 +206,6 @@ static int jcore_spi_probe(struct platform_device *pdev)
exit_busy:
exit_busy:
	err = -EBUSY;
	err = -EBUSY;
exit:
exit:
	platform_set_drvdata(pdev, NULL);
	spi_master_put(master);
	spi_master_put(master);
	return err;
	return err;
}
}