[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20200412120149.GA19219@97594fc72ec1>
Date: Sun, 12 Apr 2020 20:01:51 +0800
From: kbuild test robot <lkp@...el.com>
To: Gabriel Krisman Bertazi <krisman@...labora.com>
Cc: kbuild-all@...ts.01.org, linux-fsdevel@...r.kernel.org,
linux-ext4@...r.kernel.org,
Gabriel Krisman Bertazi <krisman@...labora.com>,
kernel@...labora.com, Theodore Ts'o <tytso@....edu>,
Jaegeuk Kim <jaegeuk@...nel.org>
Subject: [RFC PATCH] unicode: ucd_init() can be static
Signed-off-by: kbuild test robot <lkp@...el.com>
---
utf8-core.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/unicode/utf8-core.c b/fs/unicode/utf8-core.c
index 7e02827074356..b48e13e823a5a 100644
--- a/fs/unicode/utf8-core.c
+++ b/fs/unicode/utf8-core.c
@@ -250,7 +250,7 @@ static const struct attribute_group ucd_attr_group = {
};
static struct kobject *ucd_root;
-int __init ucd_init(void)
+static int __init ucd_init(void)
{
int ret;
@@ -268,7 +268,7 @@ int __init ucd_init(void)
return 0;
}
-void __exit ucd_exit(void)
+static void __exit ucd_exit(void)
{
kobject_put(ucd_root);
}
Powered by blists - more mailing lists