spi: npcm: Fix an error code in the probe function

There is an IS_ERR() vs PTR_ERR() typo here.  The current code returns 1
but we want to return the negative error code.

Fixes: 2a22f1b30c ("spi: npcm: add NPCM PSPI controller driver")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Dan Carpenter 2018-11-23 10:20:24 +03:00 committed by Mark Brown
parent f0915dfc44
commit 428f977a6a
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -381,7 +381,7 @@ static int npcm_pspi_probe(struct platform_device *pdev)
syscon_regmap_lookup_by_compatible("nuvoton,npcm750-rst");
if (IS_ERR(priv->rst_regmap)) {
dev_err(&pdev->dev, "failed to find nuvoton,npcm750-rst\n");
return IS_ERR(priv->rst_regmap);
return PTR_ERR(priv->rst_regmap);
}
/* reset SPI-HW block */