aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ubifs/lpt_commit.c
diff options
context:
space:
mode:
authorPintu Kumar <[email protected]>2024-12-09 13:59:36 +0000
committerRichard Weinberger <[email protected]>2025-01-18 14:26:40 +0000
commit923d3583ead133da742b42d9debbb7d5c5a56587 (patch)
tree0266dd5921f5145eb4849d269ed78dc04355f343 /fs/ubifs/lpt_commit.c
parentubi: Add a check for ubi_num (diff)
downloadkernel-923d3583ead133da742b42d9debbb7d5c5a56587.tar.gz
kernel-923d3583ead133da742b42d9debbb7d5c5a56587.zip
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 <[email protected]> Reviewed-by: Zhihao Cheng <[email protected]> Signed-off-by: Richard Weinberger <[email protected]>
Diffstat (limited to 'fs/ubifs/lpt_commit.c')
-rw-r--r--fs/ubifs/lpt_commit.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/ubifs/lpt_commit.c b/fs/ubifs/lpt_commit.c
index aa8837e6247c..f2cb214581fd 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;
}
/**