From: kernel test robot <lkp@intel.com>
To: Yannick Fertre <yannick.fertre@st.com>,
Philippe Cornu <philippe.cornu@st.com>,
Benjamin Gaignard <benjamin.gaignard@st.com>,
David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>,
Maxime Coquelin <mcoquelin.stm32@gmail.com>,
Alexandre Torgue <alexandre.torgue@st.com>,
dri-devel@lists.freedesktop.org,
linux-stm32@st-md-mailman.stormreply.com,
linux-arm-kernel@lists.infradead.org
Cc: kbuild-all@lists.01.org
Subject: Re: [PATCH] drm/bridge/synopsys: dsi: allows LP commands in video mode
Date: Thu, 2 Jul 2020 06:37:41 +0800 [thread overview]
Message-ID: <202007020601.Xmh7WDZs%lkp@intel.com> (raw)
In-Reply-To: <20200701151316.18524-1-yannick.fertre@st.com>
[-- Attachment #1: Type: text/plain, Size: 2522 bytes --]
Hi Yannick,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on linus/master]
[also build test ERROR on v5.8-rc3 next-20200701]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Yannick-Fertre/drm-bridge-synopsys-dsi-allows-LP-commands-in-video-mode/20200701-231547
base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 7c30b859a947535f2213277e827d7ac7dcff9c84
config: arm64-allyesconfig (attached as .config)
compiler: aarch64-linux-gcc (GCC) 9.3.0
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
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm64
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/bridge/synopsys/dw-mipi-dsi.c: In function 'dw_mipi_message_config':
>> drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c:374:10: error: 'ENABLE_LOW_POWER_CMD' undeclared (first use in this function); did you mean 'ENABLE_LOW_POWER_MASK'?
374 | val |= ENABLE_LOW_POWER_CMD;
| ^~~~~~~~~~~~~~~~~~~~
| ENABLE_LOW_POWER_MASK
drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c:374:10: note: each undeclared identifier is reported only once for each function it appears in
vim +374 drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c
357
358 static void dw_mipi_message_config(struct dw_mipi_dsi *dsi,
359 const struct mipi_dsi_msg *msg)
360 {
361 bool lpm = msg->flags & MIPI_DSI_MSG_USE_LPM;
362 u32 val = 0;
363
364 if (msg->flags & MIPI_DSI_MSG_REQ_ACK)
365 val |= ACK_RQST_EN;
366 if (lpm)
367 val |= CMD_MODE_ALL_LP;
368
369 dsi_write(dsi, DSI_LPCLK_CTRL, lpm ? 0 : PHY_TXREQUESTCLKHS);
370 dsi_write(dsi, DSI_CMD_MODE_CFG, val);
371
372 val = dsi_read(dsi, DSI_VID_MODE_CFG);
373 if (lpm)
> 374 val |= ENABLE_LOW_POWER_CMD;
375 else
376 val &= ~ENABLE_LOW_POWER_CMD;
377 dsi_write(dsi, DSI_VID_MODE_CFG, val);
378 }
379
---
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: 73542 bytes --]
[-- Attachment #3: Type: text/plain, Size: 160 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2020-07-01 22:38 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-01 15:13 [PATCH] drm/bridge/synopsys: dsi: allows LP commands in video mode Yannick Fertre
2020-07-01 22:37 ` kernel test robot [this message]
-- strict thread matches above, loose matches on Subject: below --
2020-07-01 14:52 Yannick Fertre
2020-07-01 15:09 ` Sam Ravnborg
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=202007020601.Xmh7WDZs%lkp@intel.com \
--to=lkp@intel.com \
--cc=airlied@linux.ie \
--cc=alexandre.torgue@st.com \
--cc=benjamin.gaignard@st.com \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=kbuild-all@lists.01.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=mcoquelin.stm32@gmail.com \
--cc=philippe.cornu@st.com \
--cc=yannick.fertre@st.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