All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [Intel-gfx] [PATCH v4 03/11] drm/i915: Add hw.pipe_mode to allow bigjoiner pipe/transcoder split
Date: Fri, 01 May 2020 13:06:59 +0800	[thread overview]
Message-ID: <202005011338.JlHQgffw%lkp@intel.com> (raw)
In-Reply-To: <20200430230951.2508-4-manasi.d.navare@intel.com>

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

Hi Manasi,

I love your patch! Yet something to improve:

[auto build test ERROR on drm-tip/drm-tip]
[also build test ERROR on next-20200430]
[cannot apply to drm-intel/for-linux-next linus/master v5.7-rc3]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Manasi-Navare/Rebased-Big-Joiner-patch-series-for-8K-2p1p/20200501-071225
base:   git://anongit.freedesktop.org/drm/drm-tip drm-tip
config: x86_64-defconfig (attached as .config)
compiler: gcc-7 (Ubuntu 7.5.0-6ubuntu2) 7.5.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

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

All errors (new ones prefixed by >>):

   drivers/gpu/drm/i915/display/intel_display.c: In function 'skl_update_scaler_crtc':
>> drivers/gpu/drm/i915/display/intel_display.c:6094:46: error: 'state' undeclared (first use in this function); did you mean 'statx'?
     const struct drm_display_mode *pipe_mode = &state->hw.pipe_mode;
                                                 ^~~~~
                                                 statx
   drivers/gpu/drm/i915/display/intel_display.c:6094:46: note: each undeclared identifier is reported only once for each function it appears in

vim +6094 drivers/gpu/drm/i915/display/intel_display.c

  6091	
  6092	static int skl_update_scaler_crtc(struct intel_crtc_state *crtc_state)
  6093	{
> 6094		const struct drm_display_mode *pipe_mode = &state->hw.pipe_mode;
  6095		int width, height;
  6096	
  6097		if (crtc_state->pch_pfit.enabled) {
  6098			width = drm_rect_width(&crtc_state->pch_pfit.dst);
  6099			height = drm_rect_height(&crtc_state->pch_pfit.dst);
  6100		} else {
  6101			width = pipe_mode->crtc_hdisplay;
  6102			height = pipe_mode->crtc_vdisplay;
  6103		}
  6104		return skl_update_scaler(crtc_state, !crtc_state->hw.active,
  6105					 SKL_CRTC_INDEX,
  6106					 &crtc_state->scaler_state.scaler_id,
  6107					 crtc_state->pipe_src_w, crtc_state->pipe_src_h,
  6108					 width, height, NULL, 0,
  6109					 crtc_state->pch_pfit.enabled);
  6110	}
  6111	

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

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

  reply	other threads:[~2020-05-01  5:06 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-30 23:09 [Intel-gfx] [PATCH v4 00/11] Rebased Big Joiner patch series for 8K 2p1p Manasi Navare
2020-04-30 23:09 ` [Intel-gfx] [PATCH v4 01/11] HAX to make DSC work on the icelake test system Manasi Navare
2020-04-30 23:09 ` [Intel-gfx] [PATCH v4 02/11] drm/i915: Remove hw.mode Manasi Navare
2020-04-30 23:09 ` [Intel-gfx] [PATCH v4 03/11] drm/i915: Add hw.pipe_mode to allow bigjoiner pipe/transcoder split Manasi Navare
2020-05-01  5:06   ` kbuild test robot [this message]
2020-05-01  5:18   ` [Intel-gfx] [PATCH v5 " Manasi Navare
2020-04-30 23:09 ` [Intel-gfx] [PATCH v4 04/11] drm/i915/dp: Allow big joiner modes in intel_dp_mode_valid(), v3 Manasi Navare
2020-05-06 13:35   ` Maarten Lankhorst
2020-04-30 23:09 ` [Intel-gfx] [PATCH v4 05/11] drm/i915: Try to make bigjoiner work in atomic check Manasi Navare
2020-04-30 23:09 ` [Intel-gfx] [PATCH v4 06/11] drm/i915: Enable big joiner support in enable and disable sequences Manasi Navare
2020-04-30 23:09 ` [Intel-gfx] [PATCH v4 07/11] drm/i915: Make hardware readout work on i915 Manasi Navare
2020-04-30 23:09 ` [Intel-gfx] [PATCH v4 08/11] drm/i915: Link planes in a bigjoiner configuration, v3 Manasi Navare
2020-04-30 23:09 ` [Intel-gfx] [PATCH v4 09/11] drm/i915: Add bigjoiner aware plane clipping checks Manasi Navare
2020-04-30 23:09 ` [Intel-gfx] [PATCH v4 10/11] drm/i915: Add intel_update_bigjoiner handling Manasi Navare
2020-04-30 23:09 ` [Intel-gfx] [PATCH v4 11/11] drm/i915: Add debugfs dumping for bigjoiner, v3 Manasi Navare
2020-04-30 23:57 ` [Intel-gfx] ✗ Fi.CI.BUILD: failure for Rebased Big Joiner patch series for 8K 2p1p Patchwork
2020-05-01  5:24 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Rebased Big Joiner patch series for 8K 2p1p (rev2) Patchwork
2020-05-01  5:47 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2020-05-01  9:56 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2020-05-06 14:45 ` [Intel-gfx] [PATCH v4 00/11] Rebased Big Joiner patch series for 8K 2p1p Maarten Lankhorst

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=202005011338.JlHQgffw%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    /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.