From: Christoph Müllner Date: Sun, 26 Jan 2020 22:20:54 +0000 (+0100) Subject: optee: Replace uninitialized return variable by proper one. X-Git-Tag: v2020.04-rc2~23^2~8 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0f97e923d4921a057e1a7bbfac170cadefde5624;p=oweals%2Fu-boot.git optee: Replace uninitialized return variable by proper one. As hinted by GCC 9, there is a return statement that returns an uninitialized variable in optee_copy_firmware_node(). This patch addresses this. Signed-off-by: Christoph Müllner Reviewed-by: Heiko Stuebner --- diff --git a/lib/optee/optee.c b/lib/optee/optee.c index 9b49eb8ee7..d4355c6d03 100644 --- a/lib/optee/optee.c +++ b/lib/optee/optee.c @@ -92,7 +92,7 @@ static int optee_copy_firmware_node(const void *old_blob, void *fdt_blob) offs = fdt_add_subnode(fdt_blob, offs, "optee"); if (offs < 0) - return ret; + return offs; /* copy the compatible property */ prop = fdt_getprop(old_blob, old_offs, "compatible", &len);