Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>,
	intel-gfx@lists.freedesktop.org
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH 1/3] drm: Add Adaptive Sync SDP logging
Date: Sat, 9 Dec 2023 06:50:14 +0800	[thread overview]
Message-ID: <202312090656.uvVXEvqz-lkp@intel.com> (raw)
In-Reply-To: <20231208061933.964588-2-mitulkumar.ajitkumar.golani@intel.com>

Hi Mitul,

kernel test robot noticed the following build warnings:

[auto build test WARNING on drm-intel/for-linux-next]
[also build test WARNING on drm-intel/for-linux-next-fixes drm/drm-next drm-tip/drm-tip linus/master v6.7-rc4 next-20231208]
[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/Mitul-Golani/drm-Add-Adaptive-Sync-SDP-logging/20231208-142503
base:   git://anongit.freedesktop.org/drm-intel for-linux-next
patch link:    https://lore.kernel.org/r/20231208061933.964588-2-mitulkumar.ajitkumar.golani%40intel.com
patch subject: [PATCH 1/3] drm: Add Adaptive Sync SDP logging
reproduce: (https://download.01.org/0day-ci/archive/20231209/202312090656.uvVXEvqz-lkp@intel.com/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@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202312090656.uvVXEvqz-lkp@intel.com/

All warnings (new ones prefixed by >>):

>> ./include/drm/display/drm_dp_helper.h:126: warning: Function parameter or member 'revision' not described in 'drm_dp_as_sdp'
>> ./include/drm/display/drm_dp_helper.h:126: warning: Function parameter or member 'vtotal' not described in 'drm_dp_as_sdp'
>> ./include/drm/display/drm_dp_helper.h:126: warning: Function parameter or member 'target_rr' not described in 'drm_dp_as_sdp'

vim +126 ./include/drm/display/drm_dp_helper.h

   100	
   101	/**
   102	 * struct drm_dp_as_sdp - drm DP Adaptive Sync SDP
   103	 *
   104	 * This structure represents a DP AS SDP of drm
   105	 * It is based on DP 2.1 spec [Table 2-126:  Adaptive-Sync SDP Header Bytes] and
   106	 * [Table 2-127: Adaptive-Sync SDP Payload for DB0 through DB8]
   107	 *
   108	 * @sdp_type: secondary-data packet type
   109	 * @length: number of valid data bytes
   110	 * @vmin: minimum vtotal
   111	 * @vmax: maximum vtotal
   112	 * @duration_incr_ms: Successive frame duration increase
   113	 * @duration_decr_ms: Successive frame duration decrease
   114	 * @operation_mode: Adaptive Sync Operation Mode
   115	 */
   116	
   117	struct drm_dp_as_sdp {
   118		unsigned char sdp_type;
   119		unsigned char revision;
   120		unsigned char length;
   121		int vtotal;
   122		int target_rr;
   123		int duration_incr_ms;
   124		int duration_decr_ms;
   125		int operation_mode;
 > 126	};
   127	

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

  reply	other threads:[~2023-12-08 22:50 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-08  6:19 [PATCH 0/3] Enable Adaptive Sync SDP Support for DP Mitul Golani
2023-12-08  6:19 ` [PATCH 1/3] drm: Add Adaptive Sync SDP logging Mitul Golani
2023-12-08 22:50   ` kernel test robot [this message]
2023-12-08  6:19 ` [PATCH 2/3] drm/i915/dp: Add Read/Write support for Adaptive Sync SDP Mitul Golani
2023-12-08  6:19 ` [PATCH 3/3] drm/i915/display: Compute and Enable AS SDP Mitul Golani
2023-12-08  9:25 ` ✗ Fi.CI.SPARSE: warning for Enable Adaptive Sync SDP Support for DP (rev2) Patchwork
2023-12-08  9:44 ` ✗ Fi.CI.BAT: failure " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2023-12-19  6:14 [PATCH 0/3] Enable Adaptive Sync SDP Support for DP Mitul Golani
2023-12-19  6:14 ` [PATCH 1/3] drm: Add Adaptive Sync SDP logging Mitul Golani
2023-12-19  8:43 [PATCH 0/3] Enable Adaptive Sync SDP Support for DP Mitul Golani
2023-12-19  8:43 ` [PATCH 1/3] drm: Add Adaptive Sync SDP logging Mitul Golani
2023-12-19  8:51 [PATCH 0/3] Mitul Golani
2023-12-19  8:51 ` [PATCH 1/3] drm: Add Adaptive Sync SDP logging Mitul Golani
2023-12-19  8:53 [PATCH 0/3] Enable Adaptive Sync SDP Support for DP Mitul Golani
2023-12-19  8:53 ` [PATCH 1/3] drm: Add Adaptive Sync SDP logging Mitul Golani

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=202312090656.uvVXEvqz-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=mitulkumar.ajitkumar.golani@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox