summaryrefslogtreecommitdiffstats
path: root/include/linux/maple_tree.h
diff options
context:
space:
mode:
authorVernon Yang <vernon2gm@gmail.com>2022-12-21 14:00:52 +0800
committerAndrew Morton <akpm@linux-foundation.org>2023-01-18 17:12:46 -0800
commit831978e37e93bd3e36612917a4b193278950daff (patch)
treea44176753fd44d0eb9135b6a61043712ffa59a8a /include/linux/maple_tree.h
parent80b1d8fdfad1f3084450afa6e2efcdcce867d4af (diff)
downloadlinux-stable-831978e37e93bd3e36612917a4b193278950daff.tar.gz
linux-stable-831978e37e93bd3e36612917a4b193278950daff.tar.bz2
linux-stable-831978e37e93bd3e36612917a4b193278950daff.zip
maple_tree: remove extra space and blank line
Patch series "Clean up and refinement for maple tree", v2. This patchset cleans up and refines some maple tree code. A few small changes make the code easier to understand and for better readability. This patch (of 7): These extra space and blank lines are unnecessary, so drop them. Link: https://lkml.kernel.org/r/20221221060058.609003-1-vernon2gm@gmail.com Link: https://lkml.kernel.org/r/20221221060058.609003-2-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>
Diffstat (limited to 'include/linux/maple_tree.h')
-rw-r--r--include/linux/maple_tree.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/maple_tree.h b/include/linux/maple_tree.h
index e594db58a0f1..4ee5a969441c 100644
--- a/include/linux/maple_tree.h
+++ b/include/linux/maple_tree.h
@@ -517,7 +517,6 @@ static inline void mas_reset(struct ma_state *mas)
* entry.
*
* Note: may return the zero entry.
- *
*/
#define mas_for_each(__mas, __entry, __max) \
while (((__entry) = mas_find((__mas), (__max))) != NULL)
@@ -639,7 +638,6 @@ static inline void mt_set_in_rcu(struct maple_tree *mt)
}
static inline unsigned int mt_height(const struct maple_tree *mt)
-
{
return (mt->ma_flags & MT_FLAGS_HEIGHT_MASK) >> MT_FLAGS_HEIGHT_OFFSET;
}