summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-10-07 14:32:08 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2007-10-07 14:32:08 +0200
commit236d55a06a61d8768124809c97fccd432df47260 (patch)
tree204e37a13e81cfcd6cada4e3159d6460ff91735e /common
parent2443c7a6f12bc330fcf88949786703d358f2f771 (diff)
downloadbarebox-236d55a06a61d8768124809c97fccd432df47260.tar.gz
barebox-236d55a06a61d8768124809c97fccd432df47260.tar.xz
__u_boot__symtab -> __usymtab
Diffstat (limited to 'common')
-rw-r--r--common/module.c8
1 files changed, 4 insertions, 4 deletions
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;