The patch titled Subject: mm/migrate: remove unneeded semicolons has been added to the -mm tree. Its filename is mm-migrate-remove-unneeded-semicolons.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/mm-migrate-remove-unneeded-semicolons.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/mm-migrate-remove-unneeded-semicolons.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Chengyang Fan <cy.fan@xxxxxxxxxx> Subject: mm/migrate: remove unneeded semicolons Remove superfluous semicolons after function definitions. Link: https://lkml.kernel.org/r/20210115110131.2359683-1-cy.fan@xxxxxxxxxx Signed-off-by: Chengyang Fan <cy.fan@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/migrate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/linux/migrate.h~mm-migrate-remove-unneeded-semicolons +++ a/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) { _ Patches currently in -mm which might be from cy.fan@xxxxxxxxxx are mm-migrate-remove-unneeded-semicolons.patch