diff options
author | Christoph Hellwig <hch@lst.de> | 2020-07-30 08:10:22 +0200 |
---|---|---|
committer | Jessica Yu <jeyu@kernel.org> | 2020-08-01 16:05:00 +0200 |
commit | a54e04914c211b5678602a46b3ede5d82ec1327d (patch) | |
tree | 6100610811c77ce230ca30655b8a0af16acbe726 /kernel/module.c | |
parent | 773110470e2fa3839523384ae014f8a723c4d178 (diff) | |
download | linux-a54e04914c211b5678602a46b3ede5d82ec1327d.tar.gz linux-a54e04914c211b5678602a46b3ede5d82ec1327d.tar.bz2 linux-a54e04914c211b5678602a46b3ede5d82ec1327d.zip |
modules: mark each_symbol_section static
each_symbol_section is only used inside of module.c.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jessica Yu <jeyu@kernel.org>
Diffstat (limited to 'kernel/module.c')
-rw-r--r-- | kernel/module.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/module.c b/kernel/module.c index 0f95fb4b3e37..c2a099a27b68 100644 --- a/kernel/module.c +++ b/kernel/module.c @@ -422,7 +422,7 @@ static bool each_symbol_in_section(const struct symsearch *arr, } /* Returns true as soon as fn returns true, otherwise false. */ -bool each_symbol_section(bool (*fn)(const struct symsearch *arr, +static bool each_symbol_section(bool (*fn)(const struct symsearch *arr, struct module *owner, void *data), void *data) @@ -484,7 +484,6 @@ bool each_symbol_section(bool (*fn)(const struct symsearch *arr, } return false; } -EXPORT_SYMBOL_GPL(each_symbol_section); struct find_symbol_arg { /* Input */ |