commit: http://blackfin.uclinux.org/git/?p=linux-kernel;a=commitdiff;h=28df3243ac83536254b3296e9e88c614b76e47f9 branch: http://blackfin.uclinux.org/git/?p=linux-kernel;a=shortlog;h=refs/heads/trunk
revert blackfin fdpic customization ELF_FDPIC_PLAT_PROCESS_PHDR This reverts commit 0933109bf3272e29917695679e70e30f279528b6. Signed-off-by: Steven Miao <[email protected]> --- arch/blackfin/include/asm/elf.h | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/arch/blackfin/include/asm/elf.h b/arch/blackfin/include/asm/elf.h index d15cb9b..9a097a5 100644 --- a/arch/blackfin/include/asm/elf.h +++ b/arch/blackfin/include/asm/elf.h @@ -132,4 +132,12 @@ do { \ #define ELF_PLATFORM (NULL) +struct mm_struct; +struct elf_fdpic_params; +struct elf32_phdr; +extern int elf_fdpic_plat_process_phdr(struct mm_struct *, struct elf_fdpic_params *, + struct elf32_phdr *, unsigned long *, unsigned long *); +#define ELF_FDPIC_PLAT_PROCESS_PHDR(mm, params, phdr, maddr, disp) \ + elf_fdpic_plat_process_phdr(mm, params, phdr, maddr, disp) + #endif
_______________________________________________ Linux-kernel-commits mailing list [email protected] https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits
