Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03028868 authored by Colin Ian King's avatar Colin Ian King Committed by Greg Kroah-Hartman
Browse files

staging/atomisp: remove redundant null check on frame



There is no need to perform a null check on frame as there is an earlier
null check check and return hence making the null check redundant.
Remove it.

Detected by CoverityScan, CID#1416563 ("Logically Dead Code")

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 39c116dc
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -159,8 +159,7 @@ enum ia_css_err ia_css_frame_allocate(struct ia_css_frame **frame,

#ifndef ISP2401
	ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
		      "ia_css_frame_allocate() leave: frame=%p\n",
		      frame ? *frame : (void *)-1);
		      "ia_css_frame_allocate() leave: frame=%p\n", *frame);
#else
	if ((*frame != NULL) && err == IA_CSS_SUCCESS)
		ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,