From: Michal Simek Date: Thu, 23 Jul 2009 06:24:47 +0000 (+0200) Subject: microblaze: Add support for R_MICROBLAZE_64_NONE X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=679711b82f010b854c5d4d88472c7a20fdc2b5fe;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git microblaze: Add support for R_MICROBLAZE_64_NONE For example reiserfs use this relocation type. Signed-off-by: Michal Simek --- diff --git a/arch/microblaze/kernel/module.c b/arch/microblaze/kernel/module.c index 93a3871ea541..5a45b1adfef1 100644 --- a/arch/microblaze/kernel/module.c +++ b/arch/microblaze/kernel/module.c @@ -130,6 +130,10 @@ int apply_relocate_add(Elf32_Shdr *sechdrs, const char *strtab, pr_debug("R_MICROBLAZE_32_PCREL_LO\n"); break; + case R_MICROBLAZE_64_NONE: + pr_debug("R_MICROBLAZE_NONE\n"); + break; + case R_MICROBLAZE_NONE: pr_debug("R_MICROBLAZE_NONE\n"); break;