oe-kbuild-all.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* Re: [Intel-gfx] [RFC][PATCH v2 1/3] drm: Introduce plane SIZE_HINTS property
       [not found] <20230321143643.26676-2-ville.syrjala@linux.intel.com>
@ 2023-03-21 17:21 ` kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2023-03-21 17:21 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: oe-kbuild-all

Hi Ville,

[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on drm-tip/drm-tip]

url:    https://github.com/intel-lab-lkp/linux/commits/Ville-Syrjala/drm-Introduce-plane-SIZE_HINTS-property/20230321-223915
base:   git://anongit.freedesktop.org/drm/drm-tip drm-tip
patch link:    https://lore.kernel.org/r/20230321143643.26676-2-ville.syrjala%40linux.intel.com
patch subject: [Intel-gfx] [RFC][PATCH v2 1/3] drm: Introduce plane SIZE_HINTS property
config: arm-randconfig-r025-20230319 (https://download.01.org/0day-ci/archive/20230322/202303220125.amZYGvSj-lkp@intel.com/config)
compiler: arm-linux-gnueabi-gcc (GCC) 12.1.0
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/dd0b889c4dae763a60ddd19c018a825beb3b1d6a
        git remote add linux-review https://github.com/intel-lab-lkp/linux
        git fetch --no-tags linux-review Ville-Syrjala/drm-Introduce-plane-SIZE_HINTS-property/20230321-223915
        git checkout dd0b889c4dae763a60ddd19c018a825beb3b1d6a
        # save the config file
        mkdir build_dir && cp config build_dir/.config
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arm olddefconfig
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arm SHELL=/bin/bash drivers/gpu/drm/

If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202303220125.amZYGvSj-lkp@intel.com/

All warnings (new ones prefixed by >>):

   drivers/gpu/drm/drm_plane.c:1637: warning: Function parameter or member 'size_ok' not described in 'drm_plane_add_size_hints_property'
>> drivers/gpu/drm/drm_plane.c:1637: warning: expecting prototype for drm_plane_add_size_hint_property(). Prototype was for drm_plane_add_size_hints_property() instead


vim +1637 drivers/gpu/drm/drm_plane.c

  1616	
  1617	/**
  1618	 * drm_plane_add_size_hint_property - create a size hint property
  1619	 *
  1620	 * @plane: drm plane
  1621	 * @min_width: minimum width
  1622	 * @min_height: minimum height
  1623	 * @max_width: maximum width
  1624	 * @max_height: maximum height
  1625	 * @cursor_size_ok: function to check if specified size is ok
  1626	 *
  1627	 * Create a size hints property for the plane.
  1628	 *
  1629	 * RETURNS:
  1630	 * Zero for success or -errno
  1631	 */
  1632	int drm_plane_add_size_hints_property(struct drm_plane *plane,
  1633					      int min_width, int min_height,
  1634					      int max_width, int max_height,
  1635					      bool (*size_ok)(struct drm_plane *plane,
  1636							      int width, int height))
> 1637	{

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-03-21 17:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20230321143643.26676-2-ville.syrjala@linux.intel.com>
2023-03-21 17:21 ` [Intel-gfx] [RFC][PATCH v2 1/3] drm: Introduce plane SIZE_HINTS property kernel test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).