OSDN Git Service
(root)
/
uclinux-h8
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5d319d
)
mm/migrate: remove unneeded semicolons
author
Chengyang Fan
<cy.fan@huawei.com>
Wed, 24 Feb 2021 20:10:28 +0000
(12:10 -0800)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Wed, 24 Feb 2021 21:38:35 +0000
(13:38 -0800)
Remove superfluous semicolons after function definitions.
Link:
https://lkml.kernel.org/r/20210115110131.2359683-1-cy.fan@huawei.com
Signed-off-by: Chengyang Fan <cy.fan@huawei.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
include/linux/migrate.h
patch
|
blob
|
history
diff --git
a/include/linux/migrate.h
b/include/linux/migrate.h
index
4594838
..
3a38963
100644
(file)
--- 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)
{