[U-Boot] [UBOOT PATCH] spi: zynq_qspi: Fixed incorrect return value error
Michal Simek
michal.simek at xilinx.com
Thu Jun 14 07:00:13 UTC 2018
On 14.6.2018 08:46, Vipul Kumar wrote:
> This patch replaced "return 0" with "return status" to fix the
> incorrect return value error reported by the coverity.
>
> Signed-off-by: Vipul Kumar <vipul.kumar at xilinx.com>
> ---
> drivers/spi/zynq_qspi.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/spi/zynq_qspi.c b/drivers/spi/zynq_qspi.c
> index ee8796d..9ad1927 100644
> --- a/drivers/spi/zynq_qspi.c
> +++ b/drivers/spi/zynq_qspi.c
> @@ -486,7 +486,7 @@ static int zynq_qspi_transfer(struct zynq_qspi_priv *priv)
> break;
> }
>
> - return 0;
> + return status;
> }
>
> static int zynq_qspi_claim_bus(struct udevice *dev)
>
Reviewed-by: Michal Simek <michal.simek at xilinx.com>
Thanks,
Michal
More information about the U-Boot
mailing list