Message ID | 20240809-acclimate-droplet-9a782ab70193@spud (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | [v1] firmware: microchip: fix incorrect error report of programming:timeout on success | expand |
From: Conor Dooley <conor.dooley@microchip.com> On Fri, 09 Aug 2024 14:47:44 +0100, Conor Dooley wrote: > After successfully programming the SPI flash with an MFPS auto update > image, the error sysfs attribute reports programming:timeout. > This is caused by an incorrect check on the return value from > wait_for_completion_timeout() in mpfs_auto_update_poll_complete(). > > Applied to riscv-soc-fixes, thanks! [1/1] firmware: microchip: fix incorrect error report of programming:timeout on success https://git.kernel.org/conor/c/591940e22e28 Thanks, Conor.
diff --git a/drivers/firmware/microchip/mpfs-auto-update.c b/drivers/firmware/microchip/mpfs-auto-update.c index 30de47895b1c..9ca5ee58edbd 100644 --- a/drivers/firmware/microchip/mpfs-auto-update.c +++ b/drivers/firmware/microchip/mpfs-auto-update.c @@ -166,7 +166,7 @@ static enum fw_upload_err mpfs_auto_update_poll_complete(struct fw_upload *fw_up */ ret = wait_for_completion_timeout(&priv->programming_complete, msecs_to_jiffies(AUTO_UPDATE_TIMEOUT_MS)); - if (ret) + if (!ret) return FW_UPLOAD_ERR_TIMEOUT; return FW_UPLOAD_ERR_NONE;