From: kernel test robot <lkp@intel.com>
To: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>,
Bjorn Andersson <bjorn.andersson@linaro.org>,
Rob Clark <robdclark@gmail.com>, Sean Paul <sean@poorly.run>,
Abhinav Kumar <abhinavk@codeaurora.org>
Cc: kbuild-all@lists.01.org, Jonathan Marek <jonathan@marek.ca>,
Stephen Boyd <sboyd@kernel.org>,
linux-arm-msm@vger.kernel.org, dri-devel@lists.freedesktop.org,
David Airlie <airlied@linux.ie>,
freedreno@lists.freedesktop.org
Subject: Re: [PATCH v2] drm/msm/dsi: add continuous clock support for 7nm PHY
Date: Tue, 8 Jun 2021 06:35:07 +0800 [thread overview]
Message-ID: <202106080624.T2RFDl58-lkp@intel.com> (raw)
In-Reply-To: <20210607200554.2146513-1-dmitry.baryshkov@linaro.org>
[-- Attachment #1: Type: text/plain, Size: 2165 bytes --]
Hi Dmitry,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on linus/master]
[also build test WARNING on v5.13-rc5]
[cannot apply to next-20210607]
[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/Dmitry-Baryshkov/drm-msm-dsi-add-continuous-clock-support-for-7nm-PHY/20210608-040715
base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 614124bea77e452aa6df7a8714e8bc820b489922
config: arm-defconfig (attached as .config)
compiler: arm-linux-gnueabi-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
# https://github.com/0day-ci/linux/commit/a0cec71ca8eb8dc521ab7a99c28865ce4e428e01
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Dmitry-Baryshkov/drm-msm-dsi-add-continuous-clock-support-for-7nm-PHY/20210608-040715
git checkout a0cec71ca8eb8dc521ab7a99c28865ce4e428e01
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> drivers/gpu/drm/msm/dsi/phy/dsi_phy.c:838:6: warning: no previous prototype for 'msm_dsi_phy_needs_hs_phy_sel' [-Wmissing-prototypes]
838 | bool msm_dsi_phy_needs_hs_phy_sel(struct msm_dsi_phy *phy)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
vim +/msm_dsi_phy_needs_hs_phy_sel +838 drivers/gpu/drm/msm/dsi/phy/dsi_phy.c
837
> 838 bool msm_dsi_phy_needs_hs_phy_sel(struct msm_dsi_phy *phy)
839 {
840 if (!phy)
841 return false;
842 return phy->cfg->ops.set_continuous_clock != NULL;
843 }
844
---
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: 54723 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v2] drm/msm/dsi: add continuous clock support for 7nm PHY
Date: Tue, 08 Jun 2021 06:35:07 +0800 [thread overview]
Message-ID: <202106080624.T2RFDl58-lkp@intel.com> (raw)
In-Reply-To: <20210607200554.2146513-1-dmitry.baryshkov@linaro.org>
[-- Attachment #1: Type: text/plain, Size: 2216 bytes --]
Hi Dmitry,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on linus/master]
[also build test WARNING on v5.13-rc5]
[cannot apply to next-20210607]
[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/Dmitry-Baryshkov/drm-msm-dsi-add-continuous-clock-support-for-7nm-PHY/20210608-040715
base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 614124bea77e452aa6df7a8714e8bc820b489922
config: arm-defconfig (attached as .config)
compiler: arm-linux-gnueabi-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
# https://github.com/0day-ci/linux/commit/a0cec71ca8eb8dc521ab7a99c28865ce4e428e01
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Dmitry-Baryshkov/drm-msm-dsi-add-continuous-clock-support-for-7nm-PHY/20210608-040715
git checkout a0cec71ca8eb8dc521ab7a99c28865ce4e428e01
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> drivers/gpu/drm/msm/dsi/phy/dsi_phy.c:838:6: warning: no previous prototype for 'msm_dsi_phy_needs_hs_phy_sel' [-Wmissing-prototypes]
838 | bool msm_dsi_phy_needs_hs_phy_sel(struct msm_dsi_phy *phy)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
vim +/msm_dsi_phy_needs_hs_phy_sel +838 drivers/gpu/drm/msm/dsi/phy/dsi_phy.c
837
> 838 bool msm_dsi_phy_needs_hs_phy_sel(struct msm_dsi_phy *phy)
839 {
840 if (!phy)
841 return false;
842 return phy->cfg->ops.set_continuous_clock != NULL;
843 }
844
---
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: 54723 bytes --]
next prev parent reply other threads:[~2021-06-07 22:35 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-07 20:05 [PATCH v2] drm/msm/dsi: add continuous clock support for 7nm PHY Dmitry Baryshkov
2021-06-07 20:05 ` Dmitry Baryshkov
2021-06-07 22:35 ` kernel test robot [this message]
2021-06-07 22:35 ` kernel test robot
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=202106080624.T2RFDl58-lkp@intel.com \
--to=lkp@intel.com \
--cc=abhinavk@codeaurora.org \
--cc=airlied@linux.ie \
--cc=bjorn.andersson@linaro.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=jonathan@marek.ca \
--cc=kbuild-all@lists.01.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=robdclark@gmail.com \
--cc=sboyd@kernel.org \
--cc=sean@poorly.run \
/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.