[PATCH] zsmalloc: fix semicolon.cocci warnings
From: kbuild test robot
Date: Mon Mar 21 2016 - 05:50:05 EST
mm/zsmalloc.c:1103:2-3: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
CC: Minchan Kim <minchan@xxxxxxxxxx>
Signed-off-by: Fengguang Wu <fengguang.wu@xxxxxxxxx>
---
zsmalloc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/mm/zsmalloc.c
+++ b/mm/zsmalloc.c
@@ -1100,7 +1100,7 @@ void unlock_zspage(struct page *first_pa
VM_BUG_ON_PAGE(!PageLocked(cursor), cursor);
if (cursor != locked_page)
unlock_page(cursor);
- };
+ }
}
static void free_zspage(struct zs_pool *pool, struct page *first_page)