From: Jiapeng Chong Date: Fri, 13 Aug 2021 06:40:42 +0000 (+0800) Subject: fpga: machxo2-spi: Fix missing error code in machxo2_write_complete() X-Git-Tag: v4.19.209~69 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=3fa6a4a56de070da2a49a89d448ae24955909863;p=users%2Fdwmw2%2Flinux.git fpga: machxo2-spi: Fix missing error code in machxo2_write_complete() [ Upstream commit a1e4470823d99e75b596748086e120dea169ed3c ] The error code is missing in this code scenario, add the error code '-EINVAL' to the return value 'ret'. Eliminate the follow smatch warning: drivers/fpga/machxo2-spi.c:341 machxo2_write_complete() warn: missing error code 'ret'. [mdf@kernel.org: Reworded commit message] Fixes: 88fb3a002330 ("fpga: lattice machxo2: Add Lattice MachXO2 support") Reported-by: Abaci Robot Signed-off-by: Jiapeng Chong Signed-off-by: Moritz Fischer Signed-off-by: Sasha Levin --- diff --git a/drivers/fpga/machxo2-spi.c b/drivers/fpga/machxo2-spi.c index e3cbd7ff9dc94..fa76239f979be 100644 --- a/drivers/fpga/machxo2-spi.c +++ b/drivers/fpga/machxo2-spi.c @@ -334,6 +334,7 @@ static int machxo2_write_complete(struct fpga_manager *mgr, break; if (++refreshloop == MACHXO2_MAX_REFRESH_LOOP) { machxo2_cleanup(mgr); + ret = -EINVAL; goto fail; } } while (1);