From: Simon Glass Date: Sat, 28 Dec 2019 17:44:52 +0000 (-0700) Subject: common: Drop the symbol_lookup() declaration X-Git-Tag: v2020.10~398^2~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2fd94aa0f6d4f41d2d13838b9cbd4a21738dccfe;p=platform%2Fkernel%2Fu-boot.git 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 --- diff --git a/include/common.h b/include/common.h index 95db662..691dc17 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);