From 81aa58253ef8aa076222d7b75003f00ee3a8a4ef Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Tue, 9 May 2023 15:53:23 -0400 Subject: [PATCH] module_init/_exit should have a semicolon at eol. In the past this was not needed but since el7 onwards these macros should require the semicolon. Signed-off-by: Auke Kok --- kmod/src/super.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kmod/src/super.c b/kmod/src/super.c index fecd2132..bcbf9ebd 100644 --- a/kmod/src/super.c +++ b/kmod/src/super.c @@ -675,14 +675,14 @@ out: teardown_module(); return ret; } -module_init(scoutfs_module_init) +module_init(scoutfs_module_init); static void __exit scoutfs_module_exit(void) { unregister_filesystem(&scoutfs_fs_type); teardown_module(); } -module_exit(scoutfs_module_exit) +module_exit(scoutfs_module_exit); MODULE_AUTHOR("Zach Brown "); MODULE_LICENSE("GPL");