diff options
| author | Xichao Zhao <zhao.xichao@vivo.com> | 2025-08-19 17:20:41 +0800 | 
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2025-08-19 13:06:01 +0100 | 
| commit | 2bee48c9d1cd1749922d0e2df54330c924e14a0e (patch) | |
| tree | 25fd7074e3b17132d7170cd59335600b1f6147c5 | |
| parent | 2aade32d1ffc5f91cc447ed6387c0f619fb980c3 (diff) | |
spi: mt65xx: Remove the use of dev_err_probe()
The dev_err_probe() doesn't do anything when error is '-ENOMEM'. Therefore,
remove the useless call to dev_err_probe(), and just return the value instead.
Signed-off-by: Xichao Zhao <zhao.xichao@vivo.com>
Link: https://patch.msgid.link/20250819092044.549464-5-zhao.xichao@vivo.com
Signed-off-by: Mark Brown <broonie@kernel.org>
| -rw-r--r-- | drivers/spi/spi-mt65xx.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/spi/spi-mt65xx.c b/drivers/spi/spi-mt65xx.c index a6032d44771b..8a3c00c3af42 100644 --- a/drivers/spi/spi-mt65xx.c +++ b/drivers/spi/spi-mt65xx.c @@ -1159,7 +1159,7 @@ static int mtk_spi_probe(struct platform_device *pdev)  	host = devm_spi_alloc_host(dev, sizeof(*mdata));  	if (!host) -		return dev_err_probe(dev, -ENOMEM, "failed to alloc spi host\n"); +		return -ENOMEM;  	host->auto_runtime_pm = true;  	host->dev.of_node = dev->of_node; | 
