Changeset 12487 for src/linux/ar531x/linux-2.6.23/arch/mips/kernel/module.c
- Timestamp:
- 07/14/09 00:38:29 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/linux/ar531x/linux-2.6.23/arch/mips/kernel/module.c
r12400 r12487 522 522 sym = (Elf_Sym *)sechdrs[symindex].sh_addr 523 523 + ELF_MIPS_R_SYM(rel[i]); 524 if ( !sym->st_value) {524 if (IS_ERR_VALUE(sym->st_value)) { 525 525 /* Ignore unresolved weak symbol */ 526 526 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) … … 562 562 sym = (Elf_Sym *)sechdrs[symindex].sh_addr 563 563 + ELF_MIPS_R_SYM(rel[i]); 564 if ( !sym->st_value) {564 if (IS_ERR_VALUE(sym->st_value)) { 565 565 /* Ignore unresolved weak symbol */ 566 566 if (ELF_ST_BIND(sym->st_info) == STB_WEAK)
Note: See TracChangeset
for help on using the changeset viewer.
