Re: [PATCH] fbdev: Use of_property_present() for testing DT property presence

2023-03-16 Thread Helge Deller
ase: git://anongit.freedesktop.org/drm/drm-misc drm-misc-next patch link: https://lore.kernel.org/r/20230310144729.1545943-1-robh%40kernel.org patch subject: [PATCH] fbdev: Use of_property_present() for testing DT property presence config: arm64-randconfig-r032-20230310 (https://download.01.org/0day-ci/archiv

Re: [PATCH] fbdev: Use of_property_present() for testing DT property presence

2023-03-11 Thread Rob Herring
git://anongit.freedesktop.org/drm/drm-misc drm-misc-next > patch link: > https://lore.kernel.org/r/20230310144729.1545943-1-robh%40kernel.org > patch subject: [PATCH] fbdev: Use of_property_present() for testing DT > property presence > config: arm64-randconfig-r0

Re: [PATCH] fbdev: Use of_property_present() for testing DT property presence

2023-03-11 Thread kernel test robot
943-1-robh%40kernel.org patch subject: [PATCH] fbdev: Use of_property_present() for testing DT property presence config: arm-allyesconfig (https://download.01.org/0day-ci/archive/20230311/202303112153.upbfjeui-...@intel.com/config) compiler: arm-linux-gnueabi-gcc (GCC) 12.1.0 reproduce (this is a

Re: [PATCH] fbdev: Use of_property_present() for testing DT property presence

2023-03-10 Thread kernel test robot
943-1-robh%40kernel.org patch subject: [PATCH] fbdev: Use of_property_present() for testing DT property presence config: arm64-randconfig-r032-20230310 (https://download.01.org/0day-ci/archive/20230311/202303111229.3uuc8jqv-...@intel.com/config) compiler: clang version 17.0.0 (https://github.com

[PATCH] fbdev: Use of_property_present() for testing DT property presence

2023-03-10 Thread Rob Herring
It is preferred to use typed property access functions (i.e. of_property_read_ functions) rather than low-level of_get_property/of_find_property functions for reading properties. As part of this, convert of_get_property/of_find_property calls to the recently added of_property_present() helper when