aboutsummaryrefslogtreecommitdiffstats
path: root/arch/i386/boot/compressed/relocs.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/i386/boot/compressed/relocs.c')
-rw-r--r--arch/i386/boot/compressed/relocs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/i386/boot/compressed/relocs.c b/arch/i386/boot/compressed/relocs.c
index 468da89153c..881951ca03e 100644
--- a/arch/i386/boot/compressed/relocs.c
+++ b/arch/i386/boot/compressed/relocs.c
@@ -43,6 +43,8 @@ static int is_safe_abs_reloc(const char* sym_name)
43 /* Match found */ 43 /* Match found */
44 return 1; 44 return 1;
45 } 45 }
46 if (strncmp(sym_name, "__crc_", 6) == 0)
47 return 1;
46 return 0; 48 return 0;
47} 49}
48 50