Hi Chris,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on drm-tip/drm-tip] [cannot apply to drm-intel/for-linux-next drm-exynos/exynos-drm-next tegra-drm/drm/tegra/for-next linus/master v5.6-rc5 next-20200312] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system. BTW, we also suggest to use '--base' option to specify the base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
url: https://github.com/0day-ci/linux/commits/Chris-Wilson/drm-mm-Use-debugobject... base: git://anongit.freedesktop.org/drm/drm-tip drm-tip config: x86_64-defconfig (attached as .config) compiler: clang version 11.0.0 (git://gitmirror/llvm_project 14a1b80e044aac1947c891525cf30521be0a79b7) reproduce: # FIXME the reproduce steps for clang is not ready yet
If you fix the issue, kindly add following tag Reported-by: kbuild test robot lkp@intel.com
All errors (new ones prefixed by >>):
drivers/gpu/drm/drm_mm.c:684:6: error: redefinition of '__drm_mm_node_init'
void __drm_mm_node_init(struct drm_mm_node *node) ^ include/drm/drm_mm.h:282:20: note: previous definition is here static inline void __drm_mm_node_init(struct drm_mm_node *node) { } ^
drivers/gpu/drm/drm_mm.c:690:6: error: redefinition of '__drm_mm_node_fini'
void __drm_mm_node_fini(struct drm_mm_node *node) ^ include/drm/drm_mm.h:283:20: note: previous definition is here static inline void __drm_mm_node_fini(struct drm_mm_node *node) { } ^ 2 errors generated.
vim +/__drm_mm_node_init +684 drivers/gpu/drm/drm_mm.c
683
684 void __drm_mm_node_init(struct drm_mm_node *node)
685 { 686 debug_node_init(node); 687 } 688 EXPORT_SYMBOL(__drm_mm_node_init); 689
690 void __drm_mm_node_fini(struct drm_mm_node *node)
691 { 692 debug_node_free(node); 693 } 694 EXPORT_SYMBOL(__drm_mm_node_fini); 695
--- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org