From: kernel test robot <lkp@intel.com>
To: Marek Vasut <marek.vasut+renesas@mailbox.org>,
dri-devel@lists.freedesktop.org
Cc: oe-kbuild-all@lists.linux.dev,
Marek Vasut <marek.vasut+renesas@mailbox.org>,
David Airlie <airlied@gmail.com>,
Geert Uytterhoeven <geert+renesas@glider.be>,
Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>,
Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Magnus Damm <magnus.damm@gmail.com>,
Maxime Ripard <mripard@kernel.org>,
Simona Vetter <simona@ffwll.ch>,
Thomas Zimmermann <tzimmermann@suse.de>,
Tomi Valkeinen <tomi.valkeinen+renesas@ideasonboard.com>,
linux-renesas-soc@vger.kernel.org
Subject: Re: [PATCH v2 04/10] drm/rcar-du: dsi: Clean up VCLKSET register macros
Date: Thu, 25 Sep 2025 03:10:36 +0800 [thread overview]
Message-ID: <202509250233.QOpzRcHv-lkp@intel.com> (raw)
In-Reply-To: <20250924003003.91039-5-marek.vasut+renesas@mailbox.org>
Hi Marek,
kernel test robot noticed the following build errors:
[auto build test ERROR on drm-misc/drm-misc-next]
[also build test ERROR on drm/drm-next drm-exynos/exynos-drm-next drm-tip/drm-tip next-20250924]
[cannot apply to linus/master v6.17-rc7]
[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/Marek-Vasut/drm-rcar-du-dsi-Fix-missing-parameter-in-RXSETR_-EN-macros/20250924-083415
base: git://anongit.freedesktop.org/drm/drm-misc drm-misc-next
patch link: https://lore.kernel.org/r/20250924003003.91039-5-marek.vasut%2Brenesas%40mailbox.org
patch subject: [PATCH v2 04/10] drm/rcar-du: dsi: Clean up VCLKSET register macros
config: arc-randconfig-002-20250924 (https://download.01.org/0day-ci/archive/20250925/202509250233.QOpzRcHv-lkp@intel.com/config)
compiler: arc-linux-gcc (GCC) 14.3.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250925/202509250233.QOpzRcHv-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/202509250233.QOpzRcHv-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi.c:29:
drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi.c: In function 'rcar_mipi_dsi_startup':
>> drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi_regs.h:256:41: error: implicit declaration of function 'FIELD_PREP' [-Wimplicit-function-declaration]
256 | #define VCLKSET_BPP_24 FIELD_PREP(VCLKSET_BPP_MASK, 3)
| ^~~~~~~~~~
drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi.c:629:28: note: in expansion of macro 'VCLKSET_BPP_24'
629 | vclkset |= VCLKSET_BPP_24;
| ^~~~~~~~~~~~~~
vim +/FIELD_PREP +256 drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi_regs.h
246
247 #define VCLKSET 0x100c
248 #define VCLKSET_CKEN (1 << 16)
249 #define VCLKSET_COLOR_YCC (1 << 8) /* 0:RGB 1:YCbCr */
250 #define VCLKSET_DIV_V3U(x) (((x) & 0x3) << 4)
251 #define VCLKSET_DIV_V4H(x) (((x) & 0x7) << 4)
252 #define VCLKSET_BPP_MASK (3 << 2)
253 #define VCLKSET_BPP_16 FIELD_PREP(VCLKSET_BPP_MASK, 0)
254 #define VCLKSET_BPP_18 FIELD_PREP(VCLKSET_BPP_MASK, 1)
255 #define VCLKSET_BPP_18L FIELD_PREP(VCLKSET_BPP_MASK, 2)
> 256 #define VCLKSET_BPP_24 FIELD_PREP(VCLKSET_BPP_MASK, 3)
257 #define VCLKSET_LANE(x) (((x) & 0x3) << 0)
258
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-09-24 19:10 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-24 0:28 [PATCH v2 00/10] drm/rcar-du: dsi: Convert register bits to BIT()/GENMASK() macros Marek Vasut
2025-09-24 0:28 ` [PATCH v2 01/10] drm/rcar-du: dsi: Fix missing parameter in RXSETR_...EN macros Marek Vasut
2025-09-24 0:28 ` [PATCH v2 02/10] drm/rcar-du: dsi: Document TXVMSETR PIXWDTH as bitfield Marek Vasut
2025-09-24 0:28 ` [PATCH v2 03/10] drm/rcar-du: dsi: Deduplicate mipi_dsi_pixel_format_to_bpp() usage Marek Vasut
2025-09-24 0:28 ` [PATCH v2 04/10] drm/rcar-du: dsi: Clean up VCLKSET register macros Marek Vasut
2025-09-24 19:10 ` kernel test robot [this message]
2025-09-24 0:28 ` [PATCH v2 05/10] drm/rcar-du: dsi: Clean up CLOCKSET1 CLKINSEL macros Marek Vasut
2025-09-24 0:28 ` [PATCH v2 06/10] drm/rcar-du: dsi: Clean up TXVMPSPHSETR DT macros Marek Vasut
2025-09-24 0:28 ` [PATCH v2 07/10] drm/rcar-du: dsi: Respect DSI mode flags Marek Vasut
2025-09-24 0:28 ` [PATCH v2 08/10] drm/rcar-du: dsi: Clean up handling of DRM " Marek Vasut
2025-09-24 0:28 ` [PATCH v2 09/10] drm/rcar-du: dsi: Convert register bits to BIT() macro Marek Vasut
2025-09-24 0:28 ` [PATCH v2 10/10] drm/rcar-du: dsi: Convert register bitfields to GENMASK() macro Marek Vasut
2025-09-26 7:57 ` [PATCH v2 00/10] drm/rcar-du: dsi: Convert register bits to BIT()/GENMASK() macros Jani Nikula
2025-09-26 8:06 ` Geert Uytterhoeven
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=202509250233.QOpzRcHv-lkp@intel.com \
--to=lkp@intel.com \
--cc=airlied@gmail.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=geert+renesas@glider.be \
--cc=kieran.bingham+renesas@ideasonboard.com \
--cc=laurent.pinchart+renesas@ideasonboard.com \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=magnus.damm@gmail.com \
--cc=marek.vasut+renesas@mailbox.org \
--cc=mripard@kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=simona@ffwll.ch \
--cc=tomi.valkeinen+renesas@ideasonboard.com \
--cc=tzimmermann@suse.de \
/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.