From: dkota@codeaurora.org
To: kbuild-all@01.org, timur@codeaurora.org, swboyd@chromium.org,
broonie@kernel.org, mka@chromium.org,
linux-kernel@vger.kernel.org, linux-spi@vger.kernel.org,
linux-arm-msm@vger.kernel.org,
Doug Anderson <dianders@chromium.org>,
alokc@codeaurora.org
Subject: Re: [PATCH V2] spi: spi-geni-qcom: Add SPI driver support for GENI based QUP
Date: Mon, 23 Jul 2018 15:57:04 +0530 [thread overview]
Message-ID: <891441f9f95f5d1f387cb9ffb9df1515@codeaurora.org> (raw)
In-Reply-To: <201807210707.BLvlaScm%fengguang.wu@intel.com>
On 2018-07-21 05:07, kbuild test robot wrote:
> Hi Girish,
>
> Thank you for the patch! Yet something to improve:
>
> [auto build test ERROR on spi/for-next]
> [also build test ERROR on v4.18-rc5 next-20180720]
> [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/Dilip-Kota/spi-spi-geni-qcom-Add-SPI-driver-support-for-GENI-based-QUP/20180721-034916
> base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
> for-next
> config: ia64-allmodconfig (attached as .config)
> compiler: ia64-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=ia64
>
> All errors (new ones prefixed by >>):
>
> In file included from drivers/spi/spi-geni-qcom.c:11:
> drivers/spi/spi-geni-qcom.c: In function
> 'spi_geni_prepare_transfer_hardware':
>>> include/linux/qcom-geni-se.h:238:9: error: 'version' undeclared
>>> (first use in this function); did you mean 'vm_region'?
> step = version & HW_VER_STEP_MASK; \
> ^~~~~~~
> drivers/spi/spi-geni-qcom.c:256:3: note: in expansion of macro
> 'geni_se_get_wrapper_version'
> geni_se_get_wrapper_version(se, major, minor, step);
> ^~~~~~~~~~~~~~~~~~~~~~~~~~~
> include/linux/qcom-geni-se.h:238:9: note: each undeclared
> identifier is reported only once for each function it appears in
> step = version & HW_VER_STEP_MASK; \
> ^~~~~~~
> drivers/spi/spi-geni-qcom.c:256:3: note: in expansion of macro
> 'geni_se_get_wrapper_version'
> geni_se_get_wrapper_version(se, major, minor, step);
> ^~~~~~~~~~~~~~~~~~~~~~~~~~~
> --
> In file included from drivers//spi/spi-geni-qcom.c:11:
> drivers//spi/spi-geni-qcom.c: In function
> 'spi_geni_prepare_transfer_hardware':
>>> include/linux/qcom-geni-se.h:238:9: error: 'version' undeclared
>>> (first use in this function); did you mean 'vm_region'?
> step = version & HW_VER_STEP_MASK; \
> ^~~~~~~
> drivers//spi/spi-geni-qcom.c:256:3: note: in expansion of macro
> 'geni_se_get_wrapper_version'
> geni_se_get_wrapper_version(se, major, minor, step);
> ^~~~~~~~~~~~~~~~~~~~~~~~~~~
> include/linux/qcom-geni-se.h:238:9: note: each undeclared
> identifier is reported only once for each function it appears in
> step = version & HW_VER_STEP_MASK; \
> ^~~~~~~
> drivers//spi/spi-geni-qcom.c:256:3: note: in expansion of macro
> 'geni_se_get_wrapper_version'
> geni_se_get_wrapper_version(se, major, minor, step);
> ^~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> vim +238 include/linux/qcom-geni-se.h
>
> eddac5af Karthikeyan Ramasubramanian 2018-03-30 231
> eddac5af Karthikeyan Ramasubramanian 2018-03-30 232 #define
> geni_se_get_wrapper_version(se, major, minor, step) do { \
> eddac5af Karthikeyan Ramasubramanian 2018-03-30 233 u32 ver; \
> eddac5af Karthikeyan Ramasubramanian 2018-03-30 234 \
> eddac5af Karthikeyan Ramasubramanian 2018-03-30 235 ver =
> geni_se_get_qup_hw_version(se); \
> eddac5af Karthikeyan Ramasubramanian 2018-03-30 236 major = (ver &
> HW_VER_MAJOR_MASK) >> HW_VER_MAJOR_SHFT; \
> eddac5af Karthikeyan Ramasubramanian 2018-03-30 237 minor = (ver &
> HW_VER_MINOR_MASK) >> HW_VER_MINOR_SHFT; \
> eddac5af Karthikeyan Ramasubramanian 2018-03-30 @238 step = version
> & HW_VER_STEP_MASK; \
> eddac5af Karthikeyan Ramasubramanian 2018-03-30 239 } while (0)
> eddac5af Karthikeyan Ramasubramanian 2018-03-30 240
>
> :::::: The code at line 238 was first introduced by commit
> :::::: eddac5af06546d2e7a0730e3dc02dde3dc91098a soc: qcom: Add GENI
> based QUP Wrapper driver
>
> :::::: TO: Karthikeyan Ramasubramanian <kramasub@codeaurora.org>
> :::::: CC: Andy Gross <andy.gross@linaro.org>
>
> ---
> 0-DAY kernel test infrastructure Open Source Technology
> Center
> https://lists.01.org/pipermail/kbuild-all Intel
> Corporation
HI,
For now please ignore the PATCHSET 2. I will upload a new PATCHSET
addressing all the comments of patchset 1 with detailed description.
Sorry for the inconvenience.
Regards,
Dilip
next prev parent reply other threads:[~2018-07-23 10:27 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-20 11:50 [PATCH V2] Add SPI driver support for GENI based QUP Dilip Kota
2018-07-20 11:50 ` [PATCH V2] spi: spi-geni-qcom: " Dilip Kota
2018-07-20 22:45 ` kbuild test robot
2018-07-20 22:45 ` kbuild test robot
2018-07-20 22:53 ` Doug Anderson
2018-07-20 23:32 ` Doug Anderson
2018-07-20 23:37 ` kbuild test robot
2018-07-20 23:37 ` kbuild test robot
2018-07-23 10:27 ` dkota [this message]
2018-07-20 11:51 ` [PATCH V2] dt-bindings: soc: qcom: Add device tree binding for GENI SE Dilip Kota
2018-07-20 20:35 ` Doug Anderson
2018-07-20 21:13 ` [PATCH V2] Add SPI driver support for GENI based QUP Doug Anderson
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=891441f9f95f5d1f387cb9ffb9df1515@codeaurora.org \
--to=dkota@codeaurora.org \
--cc=alokc@codeaurora.org \
--cc=broonie@kernel.org \
--cc=dianders@chromium.org \
--cc=kbuild-all@01.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
--cc=mka@chromium.org \
--cc=swboyd@chromium.org \
--cc=timur@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 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.