Skip to content

Commit

Permalink
maple_tree: remove extra return statement
Browse files Browse the repository at this point in the history
For functions with a return type of void, it is unnecessary to
add a reurn statement at the end of the function, so drop it.

Link: https://lkml.kernel.org/r/20221221060058.609003-3-vernon2gm@gmail.com
Signed-off-by: Vernon Yang <vernon2gm@gmail.com>
Reviewed-by: Liam R. Howlett <Liam.Howlett@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
  • Loading branch information
Vernon Yang authored and Andrew Morton committed Jan 19, 2023
1 parent 831978e commit d56c593
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/maple_tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -1276,7 +1276,6 @@ static inline void mas_alloc_nodes(struct ma_state *mas, gfp_t gfp)
if (mas->alloc && !(((unsigned long)mas->alloc & 0x1)))
mas->alloc->total = success;
mas_set_err(mas, -ENOMEM);
return;
}

/*
Expand Down Expand Up @@ -4712,8 +4711,6 @@ static inline void mas_rewalk(struct ma_state *mas, unsigned long index)
mas_state_walk(mas);
if (mas_is_start(mas))
goto retry;

return;
}

/*
Expand Down

0 comments on commit d56c593

Please sign in to comment.