From: Gustavo A. R. Silva Date: Thu, 21 Jun 2018 13:22:09 +0000 (-0500) Subject: spi: spi-fsl-dspi: Fix copy-paste error in dspi_probe X-Git-Tag: for-linus-20180825~114^2^2~27 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=80dc12cdfb9e8966da4f02d6d7accf2cb691caf2;p=linux-block.git spi: spi-fsl-dspi: Fix copy-paste error in dspi_probe It seems that the proper structure field to use in this particular case is *regmap_pushr* instead of regmap. Addresses-Coverity-ID: 1470126 ("Copy-paste error") Fixes: 58ba07ec79e6 ("spi: spi-fsl-dspi: Add support for XSPI mode registers") Signed-off-by: Gustavo A. R. Silva Acked-by: Esben Haabendal Signed-off-by: Mark Brown --- diff --git a/drivers/spi/spi-fsl-dspi.c b/drivers/spi/spi-fsl-dspi.c index 1f85dcdb2203..ff7456be9d6d 100644 --- a/drivers/spi/spi-fsl-dspi.c +++ b/drivers/spi/spi-fsl-dspi.c @@ -1066,7 +1066,7 @@ static int dspi_probe(struct platform_device *pdev) dev_err(&pdev->dev, "failed to init pushr regmap: %ld\n", PTR_ERR(dspi->regmap_pushr)); - ret = PTR_ERR(dspi->regmap); + ret = PTR_ERR(dspi->regmap_pushr); goto out_master_put; } }