On 9/2/25 12:34 PM, kernel test robot wrote: > Hi Srinivas, > > kernel test robot noticed the following build errors: > > [auto build test ERROR on robh/for-next] > [also build test ERROR on linus/master v6.17-rc4 next-20250902] > [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/Srinivas-Kandagatla/of-base-Add-of_property_read_u8_index/20250902-035407 > base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next > patch link: https://lore.kernel.org/r/20250901195037.47156-2-srinivas.kandagatla%40oss.qualcomm.com > patch subject: [PATCH 1/7] of: base: Add of_property_read_u8_index > config: s390-allnoconfig (https://download.01.org/0day-ci/archive/20250902/202509021915.6WBFuf9m-lkp@xxxxxxxxx/config) > compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project 2e122990391b2ba062e6308a12cfedf7206270ba) > reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250902/202509021915.6WBFuf9m-lkp@xxxxxxxxx/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 <lkp@xxxxxxxxx> > | Closes: https://lore.kernel.org/oe-kbuild-all/202509021915.6WBFuf9m-lkp@xxxxxxxxx/ > > All errors (new ones prefixed by >>): > > In file included from init/main.c:56: > In file included from include/linux/tick.h:8: > In file included from include/linux/clockchips.h:14: > In file included from include/linux/clocksource.h:19: >>> include/linux/of.h:645:8: error: unknown type name 'inlinen'; did you mean 'inline'? > 645 | static inlinen int of_property_read_u8_index(const struct device_node *np, > | ^~~~~~~ > | inline > 1 error generated. Opps sorry, not sure how it ended up this way,.. will fix this in v2. --srini > > > vim +645 include/linux/of.h > > 644 > > 645 static inlinen int of_property_read_u8_index(const struct device_node *np, > 646 const char *propname, u32 index, u8 *out_value) > 647 { > 648 return -ENOSYS; > 649 } > 650 >