Hi Chris, Thank you for the patch! Perhaps something to improve: [auto build test WARNING on rockchip/for-next] [also build test WARNING on drm/drm-next drm-exynos/exynos-drm-next drm-intel/for-linux-next drm-intel/for-linux-next-fixes drm-tip/drm-tip linus/master v6.2-rc3 next-20230110] [cannot apply to drm-misc/drm-misc-next] [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/Chris-Morgan/drm-of-Add-drm_of_get_dsi_bus-helper-function/20230111-040413 base: https://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git for-next patch link: https://lore.kernel.org/r/20230110200255.1218738-2-macroalpha82%40gmail.com patch subject: [PATCH v8 1/4] drm: of: Add drm_of_get_dsi_bus helper function config: i386-randconfig-a004 compiler: clang version 14.0.6 (https://github.com/llvm/llvm-project f28c006a5895fc0e329fe15fead81e37457cb1d1) reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # https://github.com/intel-lab-lkp/linux/commit/d2ebfa16b561f07b4ad2afd2c1ce75395150c01e git remote add linux-review https://github.com/intel-lab-lkp/linux git fetch --no-tags linux-review Chris-Morgan/drm-of-Add-drm_of_get_dsi_bus-helper-function/20230111-040413 git checkout d2ebfa16b561f07b4ad2afd2c1ce75395150c01e # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 olddefconfig COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash drivers/gpu/drm/i2c/ If you fix the issue, kindly add following tag where applicable | Reported-by: kernel test robot All warnings (new ones prefixed by >>): In file included from drivers/gpu/drm/i2c/tda998x_drv.c:20: >> include/drm/drm_of.h:134:23: warning: no previous prototype for function 'drm_of_get_dsi_bus' [-Wmissing-prototypes] struct mipi_dsi_host *drm_of_get_dsi_bus(struct device *dev, ^ include/drm/drm_of.h:134:1: note: declare 'static' if the function is not intended to be used outside of this translation unit struct mipi_dsi_host *drm_of_get_dsi_bus(struct device *dev, ^ static 1 warning generated. vim +/drm_of_get_dsi_bus +134 include/drm/drm_of.h 125 126 static inline int 127 drm_of_get_data_lanes_count_ep(const struct device_node *port, 128 int port_reg, int reg, 129 const unsigned int min, 130 const unsigned int max) 131 { 132 return -EINVAL; 133 } > 134 struct mipi_dsi_host *drm_of_get_dsi_bus(struct device *dev, 135 struct mipi_dsi_device_info *info) 136 { 137 return ERR_PTR(-EINVAL); 138 } 139 #endif 140 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests