spi: bfin-v3: 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: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
fa4bd4f1ad
commit
d9740f6aa6
1 changed files with 0 additions and 2 deletions
|
@ -888,7 +888,6 @@ static int bfin_spi_probe(struct platform_device *pdev)
|
|||
err_free_tx_dma:
|
||||
free_dma(tx_dma);
|
||||
err_put_master:
|
||||
platform_set_drvdata(pdev, NULL);
|
||||
spi_master_put(master);
|
||||
|
||||
return ret;
|
||||
|
@ -905,7 +904,6 @@ static int bfin_spi_remove(struct platform_device *pdev)
|
|||
free_dma(drv_data->rx_dma);
|
||||
free_dma(drv_data->tx_dma);
|
||||
|
||||
platform_set_drvdata(pdev, NULL);
|
||||
spi_unregister_master(drv_data->master);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue