aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/mod/modpost.h
diff options
context:
space:
mode:
authorAtsushi Nemoto <anemo@mba.ocn.ne.jp>2007-05-22 18:27:39 +0900
committerSam Ravnborg <sam@ravnborg.org>2007-07-16 21:48:49 +0200
commitae4ac12323c0ff80528cac3269151d580e23f923 (patch)
treed284aebe7c743b3ea41a2d65a7bda1cf666de964 /scripts/mod/modpost.h
parentb70e325cfe824ea0f6a1666b8b8db986e99c9603 (diff)
downloadkernel_samsung_smdk4412-ae4ac12323c0ff80528cac3269151d580e23f923.zip
kernel_samsung_smdk4412-ae4ac12323c0ff80528cac3269151d580e23f923.tar.gz
kernel_samsung_smdk4412-ae4ac12323c0ff80528cac3269151d580e23f923.tar.bz2
kbuild: make better section mismatch reports on i386 and mips
On i386 and MIPS, warn_sec_mismatch() sometimes fails to show usefull symbol name. This is because empty 'refsym' due to 0 r_addend value. This patch is to adjust r_addend value, consulting with apply_relocate() routine in kernel code. Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/mod/modpost.h')
-rw-r--r--scripts/mod/modpost.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/mod/modpost.h b/scripts/mod/modpost.h
index 0858caa..4156dd3 100644
--- a/scripts/mod/modpost.h
+++ b/scripts/mod/modpost.h
@@ -60,6 +60,9 @@ typedef union
#define ELF64_MIPS_R_SYM(i) \
((__extension__ (_Elf64_Mips_R_Info_union)(i)).r_info_fields.r_sym)
+#define ELF64_MIPS_R_TYPE(i) \
+ ((__extension__ (_Elf64_Mips_R_Info_union)(i)).r_info_fields.r_type1)
+
#if KERNEL_ELFDATA != HOST_ELFDATA
static inline void __endian(const void *src, void *dest, unsigned int size)