Re: [PATCH v2] ARM: OMAP2+: Add CFI type for omap4_finish_suspend
Nathan Chancellor <[email protected]>
| Newsgroups | org.kernel.vger.linux-omap,dev.linux.lists.llvm,dev.linux.lists.oe-kbuild-all,org.infradead.lists.linux-arm-kernel,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <20260525165527.GA18457@ax162> |
On Sun, May 24, 2026 at 02:01:31PM +0800, kernel test robot wrote: > Hi Mithil, > > kernel test robot noticed the following build errors: > > [auto build test ERROR on tmlind-omap/for-next] > [also build test ERROR on linus/master v7.1-rc4 next-20260522] > [If your patch is applied to the wrong git tree, kindly drop us a note. > And when submitting patch, we suggest to use '--base' as documented in > https://git-scm.com/docs/git-format-patch#_base_tree_information] > > url: https://github.com/intel-lab-lkp/linux/commits/Mithil-Bavishi/ARM-OMAP2-Add-CFI-type-for-omap4_finish_suspend/20260523-073206 > base: https://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git for-next > patch link: https://lore.kernel.org/r/20260522233036.12277-1-bavishimithil%40gmail.com > patch subject: [PATCH v2] ARM: OMAP2+: Add CFI type for omap4_finish_suspend > config: arm-defconfig (https://download.01.org/0day-ci/archive/20260524/[email protected]/config) > compiler: clang version 23.0.0git (https://github.com/llvm/llvm-project 5bac06718f502014fade905512f1d26d578a18f3) > reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260524/[email protected]/reproduce) > > If you fix the issue in a separate patch/commit (i.e. not just a new version of > the same patch/commit), kindly add following tags > | Reported-by: kernel test robot <[email protected]> > | Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/ > > All errors (new ones prefixed by >>): > > >> arch/arm/mach-omap2/sleep44xx.S:61:1: error: invalid instruction > SYM_TYPED_FUNC_START(omap4_finish_suspend) > ^ This report and the GCC one https://lore.kernel.org/[email protected]/ are both pointing out that cfi_types.h needs to be included in arch/arm/mach-omap2/sleep44xx.S for SYM_TYPED_FUNC_START to always be expanded properly. I tested adding #include <linux/cfi_types.h> as the first include line and both issues were resolved. Cheers, Nathan