Hi Dmitry, kernel test robot noticed the following build errors: [auto build test ERROR on drm-misc/drm-misc-next] [also build test ERROR on usb/usb-testing usb/usb-next usb/usb-linus drm-intel/for-linux-next-fixes drm-tip/drm-tip linus/master v6.5-rc3 next-20230728] [cannot apply to drm-intel/for-linux-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/Dmitry-Baryshkov/drm-display-add-transparent-bridge-helper/20230730-044510 base: git://anongit.freedesktop.org/drm/drm-misc drm-misc-next patch link: https://lore.kernel.org/r/20230729204307.268587-4-dmitry.baryshkov%40linaro.org patch subject: [PATCH 3/3] usb: typec: nb7vpq904m: switch to DRM_SIMPLE_BRIDGE config: i386-buildonly-randconfig-r006-20230730 (https://download.01.org/0day-ci/archive/20230730/202307300803.N6tLICrD-lkp@xxxxxxxxx/config) compiler: clang version 16.0.4 (https://github.com/llvm/llvm-project.git ae42196bc493ffe877a7e3dff8be32035dea4d07) reproduce: (https://download.01.org/0day-ci/archive/20230730/202307300803.N6tLICrD-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/202307300803.N6tLICrD-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): >> drivers/gpu/drm/display/drm_simple_bridge.c:104:15: error: no member named 'of_node' in 'struct drm_bridge' data->bridge.of_node = data->dev->of_node; ~~~~~~~~~~~~ ^ 1 error generated. -- >> drivers/gpu/drm/bridge/simple-bridge.c:212:18: error: no member named 'of_node' in 'struct drm_bridge' sbridge->bridge.of_node = pdev->dev.of_node; ~~~~~~~~~~~~~~~ ^ 1 error generated. vim +104 drivers/gpu/drm/display/drm_simple_bridge.c cd1c726976d298 Dmitry Baryshkov 2023-07-29 87 cd1c726976d298 Dmitry Baryshkov 2023-07-29 88 static int drm_simple_bridge_probe(struct auxiliary_device *auxdev, cd1c726976d298 Dmitry Baryshkov 2023-07-29 89 const struct auxiliary_device_id *id) cd1c726976d298 Dmitry Baryshkov 2023-07-29 90 { cd1c726976d298 Dmitry Baryshkov 2023-07-29 91 struct drm_simple_bridge_data *data; cd1c726976d298 Dmitry Baryshkov 2023-07-29 92 cd1c726976d298 Dmitry Baryshkov 2023-07-29 93 data = devm_kzalloc(&auxdev->dev, sizeof(*data), GFP_KERNEL); cd1c726976d298 Dmitry Baryshkov 2023-07-29 94 if (!data) cd1c726976d298 Dmitry Baryshkov 2023-07-29 95 return -ENOMEM; cd1c726976d298 Dmitry Baryshkov 2023-07-29 96 cd1c726976d298 Dmitry Baryshkov 2023-07-29 97 data->dev = &auxdev->dev; cd1c726976d298 Dmitry Baryshkov 2023-07-29 98 data->next_bridge = devm_drm_of_get_bridge(&auxdev->dev, auxdev->dev.of_node, 0, 0); cd1c726976d298 Dmitry Baryshkov 2023-07-29 99 if (IS_ERR(data->next_bridge)) cd1c726976d298 Dmitry Baryshkov 2023-07-29 100 return dev_err_probe(&auxdev->dev, PTR_ERR(data->next_bridge), cd1c726976d298 Dmitry Baryshkov 2023-07-29 101 "failed to acquire drm_bridge\n"); cd1c726976d298 Dmitry Baryshkov 2023-07-29 102 cd1c726976d298 Dmitry Baryshkov 2023-07-29 103 data->bridge.funcs = &drm_simple_bridge_funcs; cd1c726976d298 Dmitry Baryshkov 2023-07-29 @104 data->bridge.of_node = data->dev->of_node; cd1c726976d298 Dmitry Baryshkov 2023-07-29 105 cd1c726976d298 Dmitry Baryshkov 2023-07-29 106 return devm_drm_bridge_add(data->dev, &data->bridge); cd1c726976d298 Dmitry Baryshkov 2023-07-29 107 } cd1c726976d298 Dmitry Baryshkov 2023-07-29 108 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki