diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-28 10:44:52 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-17 13:26:51 -0500 |
commit | 17401f87e76edeb582a040a7f78a991f6d2e10e3 (patch) | |
tree | c9b90bfd922528f76f33f824b402050133e6efb0 /include/common.h | |
parent | 50fbd5c8df9730ca93d83a6b2dd6bbb2584ac009 (diff) | |
download | u-boot-17401f87e76edeb582a040a7f78a991f6d2e10e3.tar.gz |
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/common.h')
-rw-r--r-- | include/common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/common.h b/include/common.h index 95db6624ac..691dc173c0 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); |