From: kernel test robot <lkp@intel.com>
To: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>,
Andy Gross <agross@kernel.org>,
Bjorn Andersson <bjorn.andersson@linaro.org>,
Georgi Djakov <djakov@kernel.org>
Cc: clang-built-linux@googlegroups.com, kbuild-all@lists.01.org,
linux-arm-msm@vger.kernel.org, linux-pm@vger.kernel.org
Subject: Re: [PATCH 2/5] interconnect: sdm660: merge common code into icc-rpm
Date: Wed, 18 Aug 2021 14:24:21 +0800 [thread overview]
Message-ID: <202108181424.bw60tnkE-lkp@intel.com> (raw)
In-Reply-To: <20210818015732.1717810-3-dmitry.baryshkov@linaro.org>
[-- Attachment #1: Type: text/plain, Size: 3217 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.14-rc6 next-20210817]
[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/interconnect-merge-AP-owned-support-into-icc-rpm/20210818-095820
base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 614cb2751d3150850d459bee596c397f344a7936
config: arm64-randconfig-r016-20210816 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project af7818093677dcb4c0840aef96bc029deb219e57)
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
# install arm64 cross compiling tool for clang build
# apt-get install binutils-aarch64-linux-gnu
# https://github.com/0day-ci/linux/commit/d00e2bca640c9ad7926d58651be95a7b9cf7dec9
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Dmitry-Baryshkov/interconnect-merge-AP-owned-support-into-icc-rpm/20210818-095820
git checkout d00e2bca640c9ad7926d58651be95a7b9cf7dec9
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=arm64
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/interconnect/qcom/sdm660.c:130:35: warning: unused variable 'bus_clocks' [-Wunused-const-variable]
static const struct clk_bulk_data bus_clocks[] = {
^
>> drivers/interconnect/qcom/sdm660.c:135:35: warning: unused variable 'bus_mm_clocks' [-Wunused-const-variable]
static const struct clk_bulk_data bus_mm_clocks[] = {
^
2 warnings generated.
vim +/bus_clocks +130 drivers/interconnect/qcom/sdm660.c
f80a1d41432869 AngeloGioacchino Del Regno 2021-03-08 129
f80a1d41432869 AngeloGioacchino Del Regno 2021-03-08 @130 static const struct clk_bulk_data bus_clocks[] = {
f80a1d41432869 AngeloGioacchino Del Regno 2021-03-08 131 { .id = "bus" },
f80a1d41432869 AngeloGioacchino Del Regno 2021-03-08 132 { .id = "bus_a" },
f80a1d41432869 AngeloGioacchino Del Regno 2021-03-08 133 };
f80a1d41432869 AngeloGioacchino Del Regno 2021-03-08 134
f80a1d41432869 AngeloGioacchino Del Regno 2021-03-08 @135 static const struct clk_bulk_data bus_mm_clocks[] = {
f80a1d41432869 AngeloGioacchino Del Regno 2021-03-08 136 { .id = "bus" },
f80a1d41432869 AngeloGioacchino Del Regno 2021-03-08 137 { .id = "bus_a" },
f80a1d41432869 AngeloGioacchino Del Regno 2021-03-08 138 { .id = "iface" },
f80a1d41432869 AngeloGioacchino Del Regno 2021-03-08 139 };
f80a1d41432869 AngeloGioacchino Del Regno 2021-03-08 140
---
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: 36457 bytes --]
next prev parent reply other threads:[~2021-08-18 6:25 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-18 1:57 [PATCH 0/5] interconnect: merge AP-owned support into icc-rpm Dmitry Baryshkov
2021-08-18 1:57 ` [PATCH 1/5] interconnect: icc-rpm: move bus clocks handling into qnoc_probe Dmitry Baryshkov
2021-08-23 17:37 ` Georgi Djakov
2021-08-18 1:57 ` [PATCH 2/5] interconnect: sdm660: merge common code into icc-rpm Dmitry Baryshkov
2021-08-18 6:24 ` kernel test robot [this message]
2021-08-18 1:57 ` [PATCH 3/5] interconnect: icc-rpm: add support for QoS reg offset Dmitry Baryshkov
2021-08-18 1:57 ` [PATCH 4/5] interconnect: msm8916: add support for AP-owned nodes Dmitry Baryshkov
2021-08-18 1:57 ` [PATCH 5/5] interconnect: msm8939: " Dmitry Baryshkov
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=202108181424.bw60tnkE-lkp@intel.com \
--to=lkp@intel.com \
--cc=agross@kernel.org \
--cc=bjorn.andersson@linaro.org \
--cc=clang-built-linux@googlegroups.com \
--cc=djakov@kernel.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=kbuild-all@lists.01.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-pm@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox