aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChengyang Fan <[email protected]>2021-02-24 12:10:28 -0800
committerLinus Torvalds <[email protected]>2021-02-24 13:38:35 -0800
commita553e3cd2053501b658feec2be9a3b662eb1b22b (patch)
tree147e9b6e68fd4c127fa365f7978552eed47e0d10
parente5d319dedafd21211fd19ea28a3f50da7368d6ff (diff)
mm/migrate: remove unneeded semicolons
Remove superfluous semicolons after function definitions. Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Chengyang Fan <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--include/linux/migrate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/migrate.h b/include/linux/migrate.h
index 4594838a0f7c..3a389633b68f 100644
--- a/include/linux/migrate.h
+++ b/include/linux/migrate.h
@@ -89,7 +89,7 @@ extern int PageMovable(struct page *page);
extern void __SetPageMovable(struct page *page, struct address_space *mapping);
extern void __ClearPageMovable(struct page *page);
#else
-static inline int PageMovable(struct page *page) { return 0; };
+static inline int PageMovable(struct page *page) { return 0; }
static inline void __SetPageMovable(struct page *page,
struct address_space *mapping)
{