aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Glass2019-12-28 10:44:52 -0700
committerJagan Teki2020-01-24 23:06:48 +0530
commit2fd94aa0f6d4f41d2d13838b9cbd4a21738dccfe (patch)
tree67ec9a5bd79bac9bd040b75c740818ef56361de6 /include
parent63b05da74d7a51735ea5e3e680074629dbcc295e (diff)
common: Drop the symbol_lookup() declaration
This function is not called anywhere so we can drop the declaration. If it is needed one day, it should be added in its own header file. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r--include/common.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/common.h b/include/common.h
index 95db6624acb..691dc173c08 100644
--- a/include/common.h
+++ b/include/common.h
@@ -80,9 +80,6 @@ extern ulong load_addr; /* Default Load Address */
extern ulong save_addr; /* Default Save Address */
extern ulong save_size; /* Default Save Size */
-/* common/kallsysm.c */
-const char *symbol_lookup(unsigned long addr, unsigned long *caddr);
-
/* common/memsize.c */
long get_ram_size (long *, long);
phys_size_t get_effective_memsize(void);