modules: mark find_symbol static
authorChristoph Hellwig <hch@lst.de>
Thu, 30 Jul 2020 06:10:21 +0000 (08:10 +0200)
committerJessica Yu <jeyu@kernel.org>
Sat, 1 Aug 2020 14:04:59 +0000 (16:04 +0200)
find_symbol is only used in module.c.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jessica Yu <jeyu@kernel.org>
include/linux/module.h
kernel/module.c

index f1fdbeef2153a8314410bb163ebe29565c24bfb8..90bdc362be368148eaf30e46cf1e4b1286bfc8a8 100644 (file)
@@ -590,17 +590,6 @@ struct symsearch {
        bool unused;
 };
 
-/*
- * Search for an exported symbol by name.
- *
- * Must be called with module_mutex held or preemption disabled.
- */
-const struct kernel_symbol *find_symbol(const char *name,
-                                       struct module **owner,
-                                       const s32 **crc,
-                                       bool gplok,
-                                       bool warn);
-
 /*
  * Walk the exported symbol table
  *
index baae0e83d6304dc03d0208e4d5f52903743a2330..0f95fb4b3e37c219dada81d17353949c7beddab5 100644 (file)
@@ -585,7 +585,7 @@ static bool find_exported_symbol_in_section(const struct symsearch *syms,
 
 /* Find an exported symbol and return it, along with, (optional) crc and
  * (optional) module which owns it.  Needs preempt disabled or module_mutex. */
-const struct kernel_symbol *find_symbol(const char *name,
+static const struct kernel_symbol *find_symbol(const char *name,
                                        struct module **owner,
                                        const s32 **crc,
                                        bool gplok,
@@ -608,7 +608,6 @@ const struct kernel_symbol *find_symbol(const char *name,
        pr_debug("Failed to find symbol %s\n", name);
        return NULL;
 }
-EXPORT_SYMBOL_GPL(find_symbol);
 
 /*
  * Search for module by name: must hold module_mutex (or preempt disabled