All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Ville Syrjala <ville.syrjala@linux.intel.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [Intel-gfx] [RFC][PATCH v2 1/3] drm: Introduce plane SIZE_HINTS property
Date: Wed, 22 Mar 2023 01:21:35 +0800	[thread overview]
Message-ID: <202303220125.amZYGvSj-lkp@intel.com> (raw)
In-Reply-To: <20230321143643.26676-2-ville.syrjala@linux.intel.com>

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

  reply	other threads:[~2023-03-21 17:21 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-21 14:36 [Intel-gfx] [RFC][PATCH v2 0/3] drm: Add plane SIZE_HINTS property Ville Syrjala
2023-03-21 14:36 ` Ville Syrjala
2023-03-21 14:36 ` [RFC][PATCH v2 1/3] drm: Introduce " Ville Syrjala
2023-03-21 14:36   ` [Intel-gfx] " Ville Syrjala
2023-03-21 17:21   ` kernel test robot [this message]
2023-03-30 10:29   ` Pekka Paalanen
2023-03-30 10:29     ` [Intel-gfx] " Pekka Paalanen
2023-03-21 14:36 ` [RFC][PATCH v2 2/3] drm/i915: Adjust cursor_size_ok() func calling convention Ville Syrjala
2023-03-21 14:36   ` [Intel-gfx] " Ville Syrjala
2023-03-21 14:36 ` [RFC][PATCH v2 3/3] drm/i915: Add SIZE_HINTS property for cursors Ville Syrjala
2023-03-21 14:36   ` [Intel-gfx] " Ville Syrjala
2023-03-21 16:12 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm: Add plane SIZE_HINTS property (rev4) Patchwork
2023-03-21 16:12 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2023-03-21 16:12 ` [Intel-gfx] ✗ Fi.CI.DOCS: " Patchwork
2023-03-21 16:29 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202303220125.amZYGvSj-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=ville.syrjala@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.