From: kernel test robot <lkp@intel.com>
To: Nemesa Garg <nemesa.garg@intel.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH 05/10] drm/i915/display: Compute the scaler filter coefficients
Date: Thu, 6 Mar 2025 07:19:09 +0800 [thread overview]
Message-ID: <202503060720.C5qW8bAI-lkp@intel.com> (raw)
In-Reply-To: <20250304102857.326544-6-nemesa.garg@intel.com>
Hi Nemesa,
kernel test robot noticed the following build warnings:
[auto build test WARNING on drm-xe/drm-xe-next]
[also build test WARNING on next-20250305]
[cannot apply to drm-exynos/exynos-drm-next linus/master v6.14-rc5]
[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/Nemesa-Garg/drm-i915-display-Introduce-sharpness-strength-property/20250304-184502
base: https://gitlab.freedesktop.org/drm/xe/kernel.git drm-xe-next
patch link: https://lore.kernel.org/r/20250304102857.326544-6-nemesa.garg%40intel.com
patch subject: [PATCH 05/10] drm/i915/display: Compute the scaler filter coefficients
config: mips-randconfig-r132-20250305 (https://download.01.org/0day-ci/archive/20250306/202503060720.C5qW8bAI-lkp@intel.com/config)
compiler: clang version 17.0.6 (https://github.com/llvm/llvm-project 6009708b4367171ccdbf4b5905cb6a803753fe18)
reproduce: (https://download.01.org/0day-ci/archive/20250306/202503060720.C5qW8bAI-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/202503060720.C5qW8bAI-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
>> drivers/gpu/drm/i915/display/intel_casf.c:43:11: sparse: sparse: symbol 'filtercoeff_1' was not declared. Should it be static?
>> drivers/gpu/drm/i915/display/intel_casf.c:49:11: sparse: sparse: symbol 'filtercoeff_2' was not declared. Should it be static?
>> drivers/gpu/drm/i915/display/intel_casf.c:55:11: sparse: sparse: symbol 'filtercoeff_3' was not declared. Should it be static?
vim +/filtercoeff_1 +43 drivers/gpu/drm/i915/display/intel_casf.c
42
> 43 const u16 filtercoeff_1[] = {
44 FILTER_COEFF_0_0, FILTER_COEFF_0_0, FILTER_COEFF_0_5,
45 FILTER_COEFF_1_0, FILTER_COEFF_0_5, FILTER_COEFF_0_0,
46 FILTER_COEFF_0_0,
47 };
48
> 49 const u16 filtercoeff_2[] = {
50 FILTER_COEFF_0_0, FILTER_COEFF_0_25, FILTER_COEFF_0_5,
51 FILTER_COEFF_1_0, FILTER_COEFF_0_5, FILTER_COEFF_0_25,
52 FILTER_COEFF_0_0,
53 };
54
> 55 const u16 filtercoeff_3[] = {
56 FILTER_COEFF_0_125, FILTER_COEFF_0_25, FILTER_COEFF_0_5,
57 FILTER_COEFF_1_0, FILTER_COEFF_0_5, FILTER_COEFF_0_25,
58 FILTER_COEFF_0_125,
59 };
60
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-03-05 23:19 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-04 10:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
2025-03-04 10:28 ` [PATCH 01/10] drm/i915/display: Introduce sharpness strength property Nemesa Garg
2025-03-04 10:28 ` [PATCH 02/10] drm/i915/display: Introduce HAS_CASF macro Nemesa Garg
2025-03-11 11:55 ` Nautiyal, Ankit K
2025-03-04 10:28 ` [PATCH 03/10] drm/i915/display: Add sharpness strength and winsize Nemesa Garg
2025-03-11 11:58 ` Nautiyal, Ankit K
2025-03-04 10:28 ` [PATCH 04/10] drm/i915/display: Add filter lut values Nemesa Garg
2025-03-11 12:00 ` Nautiyal, Ankit K
2025-03-04 10:28 ` [PATCH 05/10] drm/i915/display: Compute the scaler filter coefficients Nemesa Garg
2025-03-05 23:19 ` kernel test robot [this message]
2025-03-11 12:02 ` Nautiyal, Ankit K
2025-03-04 10:28 ` [PATCH 06/10] drm/i915/display: Add and compute scaler parameter Nemesa Garg
2025-03-11 12:03 ` Nautiyal, Ankit K
2025-03-04 10:28 ` [PATCH 07/10] drm/i915/display: Configure the second scaler for sharpness Nemesa Garg
2025-03-11 12:07 ` Nautiyal, Ankit K
2025-03-04 10:28 ` [PATCH 08/10] drm/i915/display: Call the compute function Nemesa Garg
2025-03-11 12:11 ` Nautiyal, Ankit K
2025-03-04 10:28 ` [PATCH 09/10] drm/i915/display: Enable/disable casf Nemesa Garg
2025-03-11 12:14 ` Nautiyal, Ankit K
2025-03-04 10:28 ` [PATCH 10/10] drm/i915/display: Expose casf property Nemesa Garg
2025-03-11 12:15 ` Nautiyal, Ankit K
2025-03-04 12:03 ` ✓ CI.Patch_applied: success for Introduce drm sharpness property (rev10) Patchwork
2025-03-04 12:03 ` ✗ CI.checkpatch: warning " Patchwork
2025-03-04 12:04 ` ✓ CI.KUnit: success " Patchwork
2025-03-04 12:11 ` ✗ Fi.CI.CHECKPATCH: warning " Patchwork
2025-03-04 12:12 ` ✗ Fi.CI.SPARSE: " Patchwork
2025-03-04 12:21 ` ✓ CI.Build: success " Patchwork
2025-03-04 12:23 ` ✓ CI.Hooks: " Patchwork
2025-03-04 12:25 ` ✗ CI.checksparse: warning " Patchwork
2025-03-04 12:30 ` ✓ i915.CI.BAT: success " Patchwork
2025-03-04 12:43 ` ✓ Xe.CI.BAT: " Patchwork
2025-03-04 13:46 ` ✗ Xe.CI.Full: failure " Patchwork
2025-03-05 4:30 ` ✗ i915.CI.Full: " 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=202503060720.C5qW8bAI-lkp@intel.com \
--to=lkp@intel.com \
--cc=nemesa.garg@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 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.