From 4e3353057a3b975ca58c9b831749e2760f7812c0 Mon Sep 17 00:00:00 2001 From: Xiang W Date: Tue, 25 Apr 2023 16:56:23 +0800 Subject: lib: sbi: Remove unnecessary semicolon We have redundant semicolon at quite a few places so let's remove it. Signed-off-by: Xiang W Reviewed-by: Anup Patel --- include/sbi/sbi_list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/sbi/sbi_list.h b/include/sbi/sbi_list.h index fe735df..9e56c52 100644 --- a/include/sbi/sbi_list.h +++ b/include/sbi/sbi_list.h @@ -31,7 +31,7 @@ struct sbi_dlist _lname = SBI_LIST_HEAD_INIT(_lname) #define SBI_INIT_LIST_HEAD(ptr) \ do { \ (ptr)->next = ptr; (ptr)->prev = ptr; \ -} while (0); +} while (0) static inline void __sbi_list_add(struct sbi_dlist *new, struct sbi_dlist *prev, -- cgit v1.1