From: kbuild test robot <lkp@intel.com>
Cc: kbuild-all@01.org, dmaengine@vger.kernel.org,
timur@codeaurora.org, devicetree@vger.kernel.org,
cov@codeaurora.org, vinod.koul@intel.com, jcm@redhat.com,
agross@codeaurora.org, arnd@arndb.de,
linux-arm-msm@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
Sinan Kaya <okaya@codeaurora.org>,
Dan Williams <dan.j.williams@intel.com>,
Andy Shevchenko <andy.shevchenko@gmail.com>,
Lars-Peter Clausen <lars@metafoo.de>,
Dave Jiang <dave.jiang@intel.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH V2 10/10] dmaengine: qcom_hidma: add MSI support for interrupts
Date: Tue, 13 Sep 2016 11:46:40 +0800 [thread overview]
Message-ID: <201609131139.0JVTslDR%fengguang.wu@intel.com> (raw)
In-Reply-To: <1473685384-19913-11-git-send-email-okaya@codeaurora.org>
[-- Attachment #1: Type: text/plain, Size: 2966 bytes --]
Hi Sinan,
[auto build test ERROR on next-20160912]
[cannot apply to linus/master linux/master robh/for-next v4.8-rc6 v4.8-rc5 v4.8-rc4 v4.8-rc6]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
[Suggest to use git(>=2.9.0) format-patch --base=<commit> (or --base=auto for convenience) to record what (public, well-known) commit your patch series was built on]
[Check https://git-scm.com/docs/git-format-patch for more information]
url: https://github.com/0day-ci/linux/commits/Sinan-Kaya/dmaengine-qcom_hidma-add-MSI-interrupt-support/20160912-215548
config: xtensa-allmodconfig (attached as .config)
compiler: xtensa-linux-gcc (GCC) 4.9.0
reproduce:
wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
make.cross ARCH=xtensa
All error/warnings (new ones prefixed by >>):
drivers/dma/qcom/hidma.c: In function 'hidma_msi_capable':
>> drivers/dma/qcom/hidma.c:690:3: error: implicit declaration of function 'acpi_device_hid' [-Werror=implicit-function-declaration]
ret = strcmp(acpi_device_hid(adev), "QCOM8062");
^
>> drivers/dma/qcom/hidma.c:690:9: warning: passing argument 1 of 'strcmp' makes pointer from integer without a cast
ret = strcmp(acpi_device_hid(adev), "QCOM8062");
^
In file included from include/linux/string.h:18:0,
from include/linux/bitmap.h:8,
from include/linux/cpumask.h:11,
from include/linux/rcupdate.h:40,
from include/linux/idr.h:18,
from include/linux/kernfs.h:14,
from include/linux/sysfs.h:15,
from include/linux/kobject.h:21,
from include/linux/device.h:17,
from include/linux/dmaengine.h:20,
from drivers/dma/qcom/hidma.c:45:
arch/xtensa/include/asm/string.h:63:19: note: expected 'const char *' but argument is of type 'int'
static inline int strcmp(const char *__cs, const char *__ct)
^
drivers/dma/qcom/hidma.c: At top level:
drivers/dma/qcom/hidma.c:558:20: warning: 'hidma_chirq_handler_msi' defined but not used [-Wunused-function]
static irqreturn_t hidma_chirq_handler_msi(int chirq, void *arg)
^
cc1: some warnings being treated as errors
vim +/acpi_device_hid +690 drivers/dma/qcom/hidma.c
684 &of_compat);
685 if (ret)
686 return false;
687
688 ret = strcmp(of_compat, "qcom,hidma-1.1");
689 } else {
> 690 ret = strcmp(acpi_device_hid(adev), "QCOM8062");
691 }
692
693 return ret == 0;
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 46575 bytes --]
prev parent reply other threads:[~2016-09-13 3:46 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-12 13:02 [PATCH V2 00/10] dmaengine: qcom_hidma: add MSI interrupt support Sinan Kaya
2016-09-12 13:02 ` [PATCH V2 01/10] Documentation: DT: qcom_hidma: update binding for MSI Sinan Kaya
2016-09-12 13:02 ` [PATCH V2 02/10] Documentation: DT: qcom_hidma: correct spelling mistakes Sinan Kaya
2016-09-12 13:02 ` [PATCH V2 03/10] of: irq: make of_msi_configure accessible from modules Sinan Kaya
2016-09-12 13:02 ` [PATCH V2 04/10] dmaengine: qcom_hidma: configure DMA and MSI for OF Sinan Kaya
2016-09-12 13:03 ` [PATCH V2 06/10] dmaengine: qcom_hidma: make error and success path common Sinan Kaya
2016-09-12 13:03 ` [PATCH V2 07/10] dmaengine: qcom_hidma: bring out interrupt cause Sinan Kaya
[not found] ` <1473685384-19913-1-git-send-email-okaya-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2016-09-12 13:02 ` [PATCH V2 05/10] dmaengine: qcom_hidma: make pending_tre_count atomic Sinan Kaya
2016-09-12 13:03 ` [PATCH V2 08/10] dmaengine: qcom_hidma: add a common API to setup the interrupt Sinan Kaya
2016-09-12 13:03 ` [PATCH V2 09/10] dmaengine: qcom_hidma: protect common data structures Sinan Kaya
2016-09-12 13:03 ` [PATCH V2 10/10] dmaengine: qcom_hidma: add MSI support for interrupts Sinan Kaya
2016-09-13 3:46 ` kbuild test robot [this message]
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=201609131139.0JVTslDR%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=agross@codeaurora.org \
--cc=andy.shevchenko@gmail.com \
--cc=arnd@arndb.de \
--cc=cov@codeaurora.org \
--cc=dan.j.williams@intel.com \
--cc=dave.jiang@intel.com \
--cc=devicetree@vger.kernel.org \
--cc=dmaengine@vger.kernel.org \
--cc=jcm@redhat.com \
--cc=kbuild-all@01.org \
--cc=lars@metafoo.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=okaya@codeaurora.org \
--cc=timur@codeaurora.org \
--cc=vinod.koul@intel.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;
as well as URLs for NNTP newsgroup(s).