mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
spi: fsl-dspi: Fix getting correct address for master
Current code set platform drvdata to dspi. However, the code in dspi_suspend() and dspi_resume() assumes the drvdata is the address of master. Fix it by setting platform drvdata to master. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Mark Brown <broonie@linaro.org> Cc: stable@vger.kernel.org
This commit is contained in:
parent
38dbfb59d1
commit
017145fef5
1 changed files with 3 additions and 3 deletions
|
@ -420,7 +420,6 @@ static int dspi_suspend(struct device *dev)
|
||||||
|
|
||||||
static int dspi_resume(struct device *dev)
|
static int dspi_resume(struct device *dev)
|
||||||
{
|
{
|
||||||
|
|
||||||
struct spi_master *master = dev_get_drvdata(dev);
|
struct spi_master *master = dev_get_drvdata(dev);
|
||||||
struct fsl_dspi *dspi = spi_master_get_devdata(master);
|
struct fsl_dspi *dspi = spi_master_get_devdata(master);
|
||||||
|
|
||||||
|
@ -504,7 +503,7 @@ static int dspi_probe(struct platform_device *pdev)
|
||||||
clk_prepare_enable(dspi->clk);
|
clk_prepare_enable(dspi->clk);
|
||||||
|
|
||||||
init_waitqueue_head(&dspi->waitq);
|
init_waitqueue_head(&dspi->waitq);
|
||||||
platform_set_drvdata(pdev, dspi);
|
platform_set_drvdata(pdev, master);
|
||||||
|
|
||||||
ret = spi_bitbang_start(&dspi->bitbang);
|
ret = spi_bitbang_start(&dspi->bitbang);
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
|
@ -525,7 +524,8 @@ out_master_put:
|
||||||
|
|
||||||
static int dspi_remove(struct platform_device *pdev)
|
static int dspi_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct fsl_dspi *dspi = platform_get_drvdata(pdev);
|
struct spi_master *master = platform_get_drvdata(pdev);
|
||||||
|
struct fsl_dspi *dspi = spi_master_get_devdata(master);
|
||||||
|
|
||||||
/* Disconnect from the SPI framework */
|
/* Disconnect from the SPI framework */
|
||||||
spi_bitbang_stop(&dspi->bitbang);
|
spi_bitbang_stop(&dspi->bitbang);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue