Kernel linkers: some style

Reviewed by:	emaste
Sponsored by:	The FreeBSD Foundation
MFC after:	3 days
Differential revision:	https://reviews.freebsd.org/D32878
This commit is contained in:
Konstantin Belousov 2021-11-07 11:03:45 +02:00
parent 5bb3134a8c
commit a7e4eb1422
2 changed files with 21 additions and 25 deletions

View File

@ -1421,7 +1421,7 @@ link_elf_lookup_symbol(linker_file_t lf, const char *name, c_linker_sym_t *sym)
return 0;
}
}
return ENOENT;
return (ENOENT);
}
static int
@ -1442,9 +1442,9 @@ link_elf_symbol_values(linker_file_t lf, c_linker_sym_t sym,
val = ((caddr_t (*)(void))val)();
symval->value = val;
symval->size = es->st_size;
return 0;
return (0);
}
return ENOENT;
return (ENOENT);
}
static int
@ -1480,7 +1480,7 @@ link_elf_search_symbol(linker_file_t lf, caddr_t value,
*diffp = diff;
*sym = (c_linker_sym_t) best;
return 0;
return (0);
}
/*
@ -1782,10 +1782,8 @@ link_elf_symtab_get(linker_file_t lf, const Elf_Sym **symtab)
elf_file_t ef = (elf_file_t)lf;
*symtab = ef->ddbsymtab;
if (*symtab == NULL)
return (0);
return (ef->ddbsymcnt);
}
@ -1795,9 +1793,7 @@ link_elf_strtab_get(linker_file_t lf, caddr_t *strtab)
elf_file_t ef = (elf_file_t)lf;
*strtab = ef->ddbstrtab;
if (*strtab == NULL)
return (0);
return (ef->ddbstrcnt);
}