From: kbuild test robot <lkp@intel.com>
To: Amit Nischal <anischal@codeaurora.org>
Cc: kbuild-all@01.org, Stephen Boyd <sboyd@kernel.org>,
Michael Turquette <mturquette@baylibre.com>,
Andy Gross <andy.gross@linaro.org>,
David Brown <david.brown@linaro.org>,
Rajendra Nayak <rnayak@codeaurora.org>,
Odelu Kukatla <okukatla@codeaurora.org>,
Taniya Das <tdas@codeaurora.org>,
linux-arm-msm@vger.kernel.org, linux-soc@vger.kernel.org,
linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org,
Amit Nischal <anischal@codeaurora.org>
Subject: Re: [PATCH v2 4/4] clk: qcom: Add graphics clock controller driver for SDM845
Date: Sat, 14 Jul 2018 08:46:21 +0800 [thread overview]
Message-ID: <201807140804.6FpiaR67%fengguang.wu@intel.com> (raw)
In-Reply-To: <1531415381-16885-5-git-send-email-anischal@codeaurora.org>
[-- Attachment #1: Type: text/plain, Size: 2447 bytes --]
Hi Amit,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on agross/for-next]
[also build test ERROR on v4.18-rc4 next-20180713]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
url: https://github.com/0day-ci/linux/commits/Amit-Nischal/Add-QCOM-graphics-clock-controller-driver-for-SDM845/20180714-080708
base: https://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git for-next
config: xtensa-allyesconfig (attached as .config)
compiler: xtensa-linux-gcc (GCC) 8.1.0
reproduce:
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
GCC_VERSION=8.1.0 make.cross ARCH=xtensa
All error/warnings (new ones prefixed by >>):
>> drivers/clk/qcom/gpucc-sdm845.c:136:2: error: implicit declaration of function 'F' [-Werror=implicit-function-declaration]
F(19200000, P_BI_TCXO, 1, 0, 0),
^
>> drivers/clk/qcom/gpucc-sdm845.c:136:2: error: initializer element is not constant
drivers/clk/qcom/gpucc-sdm845.c:136:2: note: (near initialization for 'ftbl_gpu_cc_gmu_clk_src[0].freq')
drivers/clk/qcom/gpucc-sdm845.c:137:2: error: initializer element is not constant
F(200000000, P_GPLL0_OUT_MAIN_DIV, 1.5, 0, 0),
^
drivers/clk/qcom/gpucc-sdm845.c:137:2: note: (near initialization for 'ftbl_gpu_cc_gmu_clk_src[0].src')
drivers/clk/qcom/gpucc-sdm845.c:138:2: error: initializer element is not constant
F(500000000, P_GPU_CC_PLL1_OUT_MAIN, 1, 0, 0),
^
drivers/clk/qcom/gpucc-sdm845.c:138:2: note: (near initialization for 'ftbl_gpu_cc_gmu_clk_src[0].pre_div')
>> drivers/clk/qcom/gpucc-sdm845.c:139:2: warning: braces around scalar initializer
{ }
^
drivers/clk/qcom/gpucc-sdm845.c:139:2: note: (near initialization for 'ftbl_gpu_cc_gmu_clk_src[0].m')
cc1: some warnings being treated as errors
vim +/F +136 drivers/clk/qcom/gpucc-sdm845.c
134
135 static const struct freq_tbl ftbl_gpu_cc_gmu_clk_src[] = {
> 136 F(19200000, P_BI_TCXO, 1, 0, 0),
137 F(200000000, P_GPLL0_OUT_MAIN_DIV, 1.5, 0, 0),
138 F(500000000, P_GPU_CC_PLL1_OUT_MAIN, 1, 0, 0),
> 139 { }
140 };
141
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 54172 bytes --]
next prev parent reply other threads:[~2018-07-14 0:46 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-12 17:09 [PATCH v2 0/4] Add QCOM graphics clock controller driver for SDM845 Amit Nischal
2018-07-12 17:09 ` [PATCH v2 1/4] clk: qcom: gdsc: Add support to enable/disable the clocks with GDSC Amit Nischal
2018-07-12 17:09 ` [PATCH v2 2/4] clk: qcom: Add clk_rcg2_gfx3d_ops for SDM845 Amit Nischal
2018-07-12 17:09 ` [PATCH v2 3/4] dt-bindings: clock: Introduce QCOM Graphics clock bindings Amit Nischal
2018-07-12 17:09 ` [PATCH v2 4/4] clk: qcom: Add graphics clock controller driver for SDM845 Amit Nischal
2018-07-14 0:46 ` kbuild test robot [this message]
2018-07-14 3:20 ` kbuild 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=201807140804.6FpiaR67%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=andy.gross@linaro.org \
--cc=anischal@codeaurora.org \
--cc=david.brown@linaro.org \
--cc=kbuild-all@01.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-soc@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=okukatla@codeaurora.org \
--cc=rnayak@codeaurora.org \
--cc=sboyd@kernel.org \
--cc=tdas@codeaurora.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