From: Pintu Kumar Date: Mon, 9 Dec 2024 13:59:36 +0000 (+0530) Subject: ubifs: dump_lpt_leb: remove return at end of void function X-Git-Tag: v6.14-rc1~26^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=923d3583ead133da742b42d9debbb7d5c5a56587;p=thirdparty%2Fkernel%2Flinux.git ubifs: dump_lpt_leb: remove return at end of void function Noticed that there is a useless return statement at the end of void function dump_lpt_leb(). Just removing it. Signed-off-by: Pintu Kumar Reviewed-by: Zhihao Cheng Signed-off-by: Richard Weinberger --- diff --git a/fs/ubifs/lpt_commit.c b/fs/ubifs/lpt_commit.c index aa8837e6247cf..f2cb214581fd9 100644 --- a/fs/ubifs/lpt_commit.c +++ b/fs/ubifs/lpt_commit.c @@ -1932,7 +1932,6 @@ static void dump_lpt_leb(const struct ubifs_info *c, int lnum) pr_err("(pid %d) finish dumping LEB %d\n", current->pid, lnum); out: vfree(buf); - return; } /**