Re: [PATCH] powerpc: Fix objtool warning for unannotated intra-function call in head_85xx.o

2023-02-05 Thread Michael Ellerman
On Sat, 28 Jan 2023 18:11:38 +0530, Sathvika Vasireddy wrote: > Objtool throws the following warning: > arch/powerpc/kernel/head_85xx.o: warning: objtool: .head.text+0x1a6c: > unannotated intra-function call > > Fix this warning by annotating KernelSPE symbol with SYM_FUNC_START_LOCAL > and

[PATCH] powerpc: Fix objtool warning for unannotated intra-function call in head_85xx.o

2023-01-28 Thread Sathvika Vasireddy
Objtool throws the following warning: arch/powerpc/kernel/head_85xx.o: warning: objtool: .head.text+0x1a6c: unannotated intra-function call Fix this warning by annotating KernelSPE symbol with SYM_FUNC_START_LOCAL and SYM_FUNC_END macros. Reported-by: kernel test robot Signed-off-by: Sathvika