From: Kevin Hao Date: Thu, 10 Apr 2025 06:56:10 +0000 (+0800) Subject: spi: fsl-spi: Remove redundant probe error message X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=82bedbfedd2fc7cd1287732879e515ceb94f8963;p=users%2Fjedix%2Flinux-maple.git spi: fsl-spi: Remove redundant probe error message An error message is already emitted by the driver core function call_driver_probe() when the driver probe fails. Therefore, this redundant probe error message is removed. Signed-off-by: Kevin Hao Link: https://patch.msgid.link/20250410-spi-v1-2-56e867cc19cf@gmail.com Signed-off-by: Mark Brown --- diff --git a/drivers/spi/spi-fsl-qspi.c b/drivers/spi/spi-fsl-qspi.c index 2f54dc09d11b..b5ecffcaf795 100644 --- a/drivers/spi/spi-fsl-qspi.c +++ b/drivers/spi/spi-fsl-qspi.c @@ -963,7 +963,6 @@ err_disable_clk: err_put_ctrl: spi_controller_put(ctlr); - dev_err(dev, "Freescale QuadSPI probe failed\n"); return ret; }