diff --git a/arch/arm64/tools/gen-hyprel.c b/arch/arm64/tools/gen-hyprel.c index fa719b6c6d54..6bc88a756cb7 100644 --- a/arch/arm64/tools/gen-hyprel.c +++ b/arch/arm64/tools/gen-hyprel.c @@ -296,10 +296,8 @@ static void init_elf(const char *path) /* Print the prologue of the output ASM file. */ static void emit_prologue(void) { - printf("#include \n" - ".data\n" - ".pushsection " HYP_RELOC_SECTION ", \"a\"\n" - "SYM_ENTRY(__hyprel_start, SYM_L_GLOBAL, SYM_A_NONE)\n"); + printf(".data\n" + ".pushsection " HYP_RELOC_SECTION ", \"a\"\n"); } /* Print ASM statements needed as a prologue to a processed hyp section. */ @@ -349,8 +347,7 @@ static void emit_rela_abs64(Elf64_Rela *rela, const char *sh_orig_name) /* Print the epilogue of the output ASM file. */ static void emit_epilogue(void) { - printf("SYM_ENTRY(__hyprel_end, SYM_L_GLOBAL, SYM_A_NONE)\n" - ".popsection\n"); + printf(".popsection\n"); } /*