public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Matt Roper <matthew.d.roper@intel.com>, intel-gfx@lists.freedesktop.org
Cc: clang-built-linux@googlegroups.com, kbuild-all@lists.01.org
Subject: Re: [Intel-gfx] [PATCH 2/2] drm/i915/adl_p: Add ddi buf translation tables for combo PHY
Date: Fri, 23 Jul 2021 17:51:11 +0800	[thread overview]
Message-ID: <202107231727.eGTKliUw-lkp@intel.com> (raw)
In-Reply-To: <20210723053401.1269829-3-matthew.d.roper@intel.com>

[-- Attachment #1: Type: text/plain, Size: 2676 bytes --]

Hi Matt,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on drm-intel/for-linux-next]
[also build test ERROR on drm-tip/drm-tip next-20210722]
[cannot apply to v5.14-rc2]
[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]

url:    https://github.com/0day-ci/linux/commits/Matt-Roper/ADL-DDI-translation-buffer-updates/20210723-133603
base:   git://anongit.freedesktop.org/drm-intel for-linux-next
config: x86_64-randconfig-r036-20210723 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 9625ca5b602616b2f5584e8a49ba93c52c141e40)
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
        # install x86_64 cross compiling tool for clang build
        # apt-get install binutils-x86-64-linux-gnu
        # https://github.com/0day-ci/linux/commit/68ee32b7d0fc372136f130d55cd937fc6b9bbbd9
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Matt-Roper/ADL-DDI-translation-buffer-updates/20210723-133603
        git checkout 68ee32b7d0fc372136f130d55cd937fc6b9bbbd9
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c:1756:1: error: unused function 'adlp_get_combo_buf_trans' [-Werror,-Wunused-function]
   adlp_get_combo_buf_trans(struct intel_encoder *encoder,
   ^
   1 error generated.


vim +/adlp_get_combo_buf_trans +1756 drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c

  1754	
  1755	static const struct intel_ddi_buf_trans *
> 1756	adlp_get_combo_buf_trans(struct intel_encoder *encoder,
  1757				 const struct intel_crtc_state *crtc_state,
  1758				 int *n_entries)
  1759	{
  1760		if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI))
  1761			return intel_get_buf_trans(&adlp_combo_phy_ddi_translations_hdmi, n_entries);
  1762		else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_EDP))
  1763			return adlp_get_combo_buf_trans_edp(encoder, crtc_state, n_entries);
  1764		else
  1765			return adlp_get_combo_buf_trans_dp(encoder, crtc_state, n_entries);
  1766	}
  1767	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 34836 bytes --]

[-- Attachment #3: Type: text/plain, Size: 160 bytes --]

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  parent reply	other threads:[~2021-07-23  9:51 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-23  5:33 [Intel-gfx] [PATCH 0/2] ADL DDI translation buffer updates Matt Roper
2021-07-23  5:34 ` [Intel-gfx] [PATCH 1/2] drm/i915/adl_s: Update ddi buf translation tables Matt Roper
2021-07-28 17:41   ` Souza, Jose
2021-07-23  5:34 ` [Intel-gfx] [PATCH 2/2] drm/i915/adl_p: Add ddi buf translation tables for combo PHY Matt Roper
2021-07-23  5:38   ` [Intel-gfx] [PATCH v2 " Matt Roper
2021-07-23  8:00     ` Almahallawy, Khaled
2021-07-28 17:57     ` Souza, Jose
2021-07-23  9:51   ` kernel test robot [this message]
2021-07-23  6:31 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for ADL DDI translation buffer updates (rev2) Patchwork
2021-07-23  7:01 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-07-23 11:04 ` [Intel-gfx] ✗ Fi.CI.IGT: 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=202107231727.eGTKliUw-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=clang-built-linux@googlegroups.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=kbuild-all@lists.01.org \
    --cc=matthew.d.roper@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox