Commit 9803af29 authored by Sourabh Jain's avatar Sourabh Jain Committed by Michael Ellerman
Browse files

powerpc/crash: remove unnecessary NULL check before kvfree()



Fix the following coccicheck build warning:

arch/powerpc/kexec/crash.c:488:2-8: WARNING: NULL check before some
freeing functions is not needed.

Reported-by: default avatarkernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202404261048.skfV5DDB-lkp@intel.com/


Signed-off-by: default avatarSourabh Jain <sourabhjain@linux.ibm.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20240502182040.774759-1-sourabhjain@linux.ibm.com
parent 849599b7
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -484,7 +484,6 @@ static void update_crash_elfcorehdr(struct kimage *image, struct memory_notify *
	}
out:
	kvfree(cmem);
	if (elfbuf)
	kvfree(elfbuf);
}