From: majun258@huawei.com (majun (F))
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH RESEND v6 3/4] irqchip:create irq domain for each mbigen device
Date: Wed, 21 Oct 2015 13:57:02 +0800 [thread overview]
Message-ID: <5627292E.6050708@huawei.com> (raw)
In-Reply-To: <201510210208.Hkd8XMxI%fengguang.wu@intel.com>
? 2015/10/21 2:43, kbuild test robot ??:
> Hi Ma,
>
> [auto build test ERROR on tip/irq/core -- if it's inappropriate base, please suggest rules for selecting the more suitable base]
>
> url: https://github.com/0day-ci/linux/commits/MaJun/irqchip-support-mbigen-interrupt-controller/20151020-202450
> config: arm64-allyesconfig (attached as .config)
> 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=arm64
>
> All error/warnings (new ones prefixed by >>):
>
> drivers/irqchip/irq-mbigen.c:84:14: error: 'mbigen_eoi_irq' undeclared here (not in a function)
> .irq_eoi = mbigen_eoi_irq,
> ^
> drivers/irqchip/irq-mbigen.c:85:19: error: 'mbigen_set_type' undeclared here (not in a function)
> .irq_set_type = mbigen_set_type,
> ^
I'll fix this error in v7
> drivers/irqchip/irq-mbigen.c: In function 'mbigen_irq_domain_alloc':
>>> drivers/irqchip/irq-mbigen.c:150:2: error: implicit declaration of function 'platform_msi_domain_alloc' [-Werror=implicit-function-declaration]
> err = platform_msi_domain_alloc(domain, virq, nr_irqs);
> ^
>>> drivers/irqchip/irq-mbigen.c:159:2: error: implicit declaration of function 'platform_msi_get_host_data' [-Werror=implicit-function-declaration]
> mgn_chip = platform_msi_get_host_data(domain);
> ^
>>> drivers/irqchip/irq-mbigen.c:159:11: warning: assignment makes pointer from integer without a cast
> mgn_chip = platform_msi_get_host_data(domain);
> ^
> drivers/irqchip/irq-mbigen.c: In function 'mbigen_device_probe':
>>> drivers/irqchip/irq-mbigen.c:202:2: error: implicit declaration of function 'platform_msi_create_device_domain' [-Werror=implicit-function-declaration]
> domain = platform_msi_create_device_domain(&pdev->dev, num_msis,
> ^
> drivers/irqchip/irq-mbigen.c:202:9: warning: assignment makes pointer from integer without a cast
> domain = platform_msi_create_device_domain(&pdev->dev, num_msis,
My patch based on Marc's patch
https://lkml.org/lkml/2015/10/15/545
So, please apply this patch first.
Thanks!
Ma Jun
WARNING: multiple messages have this Message-ID (diff)
From: "majun (F)" <majun258@huawei.com>
To: kbuild test robot <lkp@intel.com>
Cc: <kbuild-all@01.org>, <Catalin.Marinas@arm.com>,
<linux-kernel@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>, <Will.Deacon@arm.com>,
<mark.rutland@arm.com>, <marc.zyngier@arm.com>,
<jason@lakedaemon.net>, <tglx@linutronix.de>,
<lizefan@huawei.com>, <huxinwei@huawei.com>,
<dingtianhong@huawei.com>, <zhaojunhua@hisilicon.com>,
<liguozhu@hisilicon.com>, <xuwei5@hisilicon.com>,
<wei.chenwei@hisilicon.com>, <guohanjun@huawei.com>,
<wuyun.wu@huawei.com>, <guodong.xu@linaro.org>,
<haojian.zhuang@linaro.org>, <zhangfei.gao@linaro.org>,
<usman.ahmad@linaro.org>, <klimov.linux@gmail.com>,
<gabriele.paoloni@huawei.com>
Subject: Re: [PATCH RESEND v6 3/4] irqchip:create irq domain for each mbigen device
Date: Wed, 21 Oct 2015 13:57:02 +0800 [thread overview]
Message-ID: <5627292E.6050708@huawei.com> (raw)
In-Reply-To: <201510210208.Hkd8XMxI%fengguang.wu@intel.com>
在 2015/10/21 2:43, kbuild test robot 写道:
> Hi Ma,
>
> [auto build test ERROR on tip/irq/core -- if it's inappropriate base, please suggest rules for selecting the more suitable base]
>
> url: https://github.com/0day-ci/linux/commits/MaJun/irqchip-support-mbigen-interrupt-controller/20151020-202450
> config: arm64-allyesconfig (attached as .config)
> 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=arm64
>
> All error/warnings (new ones prefixed by >>):
>
> drivers/irqchip/irq-mbigen.c:84:14: error: 'mbigen_eoi_irq' undeclared here (not in a function)
> .irq_eoi = mbigen_eoi_irq,
> ^
> drivers/irqchip/irq-mbigen.c:85:19: error: 'mbigen_set_type' undeclared here (not in a function)
> .irq_set_type = mbigen_set_type,
> ^
I'll fix this error in v7
> drivers/irqchip/irq-mbigen.c: In function 'mbigen_irq_domain_alloc':
>>> drivers/irqchip/irq-mbigen.c:150:2: error: implicit declaration of function 'platform_msi_domain_alloc' [-Werror=implicit-function-declaration]
> err = platform_msi_domain_alloc(domain, virq, nr_irqs);
> ^
>>> drivers/irqchip/irq-mbigen.c:159:2: error: implicit declaration of function 'platform_msi_get_host_data' [-Werror=implicit-function-declaration]
> mgn_chip = platform_msi_get_host_data(domain);
> ^
>>> drivers/irqchip/irq-mbigen.c:159:11: warning: assignment makes pointer from integer without a cast
> mgn_chip = platform_msi_get_host_data(domain);
> ^
> drivers/irqchip/irq-mbigen.c: In function 'mbigen_device_probe':
>>> drivers/irqchip/irq-mbigen.c:202:2: error: implicit declaration of function 'platform_msi_create_device_domain' [-Werror=implicit-function-declaration]
> domain = platform_msi_create_device_domain(&pdev->dev, num_msis,
> ^
> drivers/irqchip/irq-mbigen.c:202:9: warning: assignment makes pointer from integer without a cast
> domain = platform_msi_create_device_domain(&pdev->dev, num_msis,
My patch based on Marc's patch
https://lkml.org/lkml/2015/10/15/545
So, please apply this patch first.
Thanks!
Ma Jun
next prev parent reply other threads:[~2015-10-21 5:57 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-20 12:10 [PATCH RESEND v6 0/4] irqchip:support mbigen interrupt controller MaJun
2015-10-20 12:10 ` MaJun
2015-10-20 12:10 ` [PATCH RESEND v6 1/4] dt-binding:Documents of the mbigen bindings MaJun
2015-10-20 12:10 ` MaJun
2015-10-20 12:10 ` [PATCH RESEND v6 2/4] irqchip: add platform device driver for mbigen device MaJun
2015-10-20 12:10 ` MaJun
2015-10-20 12:10 ` [PATCH RESEND v6 3/4] irqchip:create irq domain for each " MaJun
2015-10-20 12:10 ` MaJun
2015-10-20 18:43 ` kbuild test robot
2015-10-20 18:43 ` kbuild test robot
2015-10-21 5:57 ` majun (F) [this message]
2015-10-21 5:57 ` majun (F)
2015-10-20 12:10 ` [PATCH RESEND v6 4/4] irqchip:implement the mbigen irq chip operation functions MaJun
2015-10-20 12:10 ` MaJun
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=5627292E.6050708@huawei.com \
--to=majun258@huawei.com \
--cc=linux-arm-kernel@lists.infradead.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.