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 /include/linux/module.h | |
parent | 773110470e2fa3839523384ae014f8a723c4d178 (diff) |
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 'include/linux/module.h')
-rw-r--r-- | include/linux/module.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/linux/module.h b/include/linux/module.h index 90bdc362be36..b79219eed83c 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -590,15 +590,6 @@ struct symsearch { bool unused; }; -/* - * Walk the exported symbol table - * - * Must be called with module_mutex held or preemption disabled. - */ -bool each_symbol_section(bool (*fn)(const struct symsearch *arr, - struct module *owner, - void *data), void *data); - /* Returns 0 and fills in value, defined and namebuf, or -ERANGE if symnum out of range. */ int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type, |