From 236d55a06a61d8768124809c97fccd432df47260 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Sun, 7 Oct 2007 14:32:08 +0200 Subject: __u_boot__symtab -> __usymtab --- common/module.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'common') diff --git a/common/module.c b/common/module.c index 4cdf7ede5a..fee47225b0 100644 --- a/common/module.c +++ b/common/module.c @@ -45,8 +45,8 @@ static unsigned int find_sec(Elf_Ehdr *hdr, } /* Provided by the linker */ -extern const struct kernel_symbol __u_boot_symtab_start[]; -extern const struct kernel_symbol __u_boot_symtab_end[]; +extern const struct kernel_symbol __usymtab_start[]; +extern const struct kernel_symbol __usymtab_end[]; /* lookup symbol in given range of kernel_symbols */ static const struct kernel_symbol *lookup_symbol(const char *name, @@ -67,8 +67,8 @@ static unsigned long resolve_symbol(Elf32_Shdr *sechdrs, const struct kernel_symbol *ks; debug("%s: %s\n", __FUNCTION__, name); - ks = lookup_symbol(name, __u_boot_symtab_start, - __u_boot_symtab_end); + ks = lookup_symbol(name, __usymtab_start, + __usymtab_end); if (ks) return ks->value; -- cgit v1.2.3