From: kbuild test robot <lkp-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
To: Sakari Ailus <sakari.ailus-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
Cc: kbuild-all-JC7UmRfGjtg@public.gmane.org,
linux-acpi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
sudeep.holla-5wv7dgnIgG8@public.gmane.org,
lorenzo.pieralisi-5wv7dgnIgG8@public.gmane.org,
mika.westerberg-VuQAYsv1563Yd54FQh9/CA@public.gmane.org,
rafael-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
mark.rutland-5wv7dgnIgG8@public.gmane.org,
broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
ahs3-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org
Subject: Re: [PATCH 10/15] of: No need to include linux/property.h, linux/fwnode.h is sufficient
Date: Sat, 28 Jan 2017 09:04:59 +0800 [thread overview]
Message-ID: <201701280907.ntLLMTei%fengguang.wu@intel.com> (raw)
In-Reply-To: <1485532990-8431-11-git-send-email-sakari.ailus-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 4361 bytes --]
Hi Sakari,
[auto build test WARNING on driver-core/driver-core-testing]
[also build test WARNING on v4.10-rc5 next-20170125]
[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/Sakari-Ailus/ACPI-graph-support/20170128-032753
config: arm64-defconfig (attached as .config)
compiler: aarch64-linux-gnu-gcc (Debian 6.1.1-9) 6.1.1 20160705
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 warnings (new ones prefixed by >>):
In file included from arch/arm64/kvm/../../../virt/kvm/arm/vgic/vgic-v2.c:17:0:
>> include/linux/irqchip/arm-gic.h:123:30: warning: 'struct device' declared inside parameter list will not be visible outside of this definition or declaration
int gic_of_init_child(struct device *dev, struct gic_chip_data **gic, int irq);
^~~~~~
vim +123 include/linux/irqchip/arm-gic.h
4c2880b3 include/linux/irqchip/arm-gic.h Jon Hunter 2015-07-31 107 int gic_cpu_if_down(unsigned int gic_nr);
cdbb813d include/linux/irqchip/arm-gic.h Jon Hunter 2016-06-07 108 void gic_cpu_save(struct gic_chip_data *gic);
cdbb813d include/linux/irqchip/arm-gic.h Jon Hunter 2016-06-07 109 void gic_cpu_restore(struct gic_chip_data *gic);
cdbb813d include/linux/irqchip/arm-gic.h Jon Hunter 2016-06-07 110 void gic_dist_save(struct gic_chip_data *gic);
cdbb813d include/linux/irqchip/arm-gic.h Jon Hunter 2016-06-07 111 void gic_dist_restore(struct gic_chip_data *gic);
e807acbc arch/arm/include/asm/hardware/gic.h Changhwan Youn 2011-07-16 112
8673c1d7 include/linux/irqchip/arm-gic.h Linus Walleij 2015-10-24 113 /*
8673c1d7 include/linux/irqchip/arm-gic.h Linus Walleij 2015-10-24 114 * Subdrivers that need some preparatory work can initialize their
8673c1d7 include/linux/irqchip/arm-gic.h Linus Walleij 2015-10-24 115 * chips and call this to register their GICs.
8673c1d7 include/linux/irqchip/arm-gic.h Linus Walleij 2015-10-24 116 */
8673c1d7 include/linux/irqchip/arm-gic.h Linus Walleij 2015-10-24 117 int gic_of_init(struct device_node *node, struct device_node *parent);
8673c1d7 include/linux/irqchip/arm-gic.h Linus Walleij 2015-10-24 118
8673c1d7 include/linux/irqchip/arm-gic.h Linus Walleij 2015-10-24 119 /*
9c8edddf include/linux/irqchip/arm-gic.h Jon Hunter 2016-06-07 120 * Initialises and registers a non-root or child GIC chip. Memory for
9c8edddf include/linux/irqchip/arm-gic.h Jon Hunter 2016-06-07 121 * the gic_chip_data structure is dynamically allocated.
9c8edddf include/linux/irqchip/arm-gic.h Jon Hunter 2016-06-07 122 */
9c8edddf include/linux/irqchip/arm-gic.h Jon Hunter 2016-06-07 @123 int gic_of_init_child(struct device *dev, struct gic_chip_data **gic, int irq);
9c8edddf include/linux/irqchip/arm-gic.h Jon Hunter 2016-06-07 124
9c8edddf include/linux/irqchip/arm-gic.h Jon Hunter 2016-06-07 125 /*
8673c1d7 include/linux/irqchip/arm-gic.h Linus Walleij 2015-10-24 126 * Legacy platforms not converted to DT yet must use this to init
8673c1d7 include/linux/irqchip/arm-gic.h Linus Walleij 2015-10-24 127 * their GIC
8673c1d7 include/linux/irqchip/arm-gic.h Linus Walleij 2015-10-24 128 */
e81a7cd9 include/linux/irqchip/arm-gic.h Marc Zyngier 2015-10-13 129 void gic_init(unsigned int nr, int start,
e81a7cd9 include/linux/irqchip/arm-gic.h Marc Zyngier 2015-10-13 130 void __iomem *dist , void __iomem *cpu);
db0d4db2 arch/arm/include/asm/hardware/gic.h Marc Zyngier 2011-11-12 131
:::::: The code at line 123 was first introduced by commit
:::::: 9c8edddfc9924cb473a7570c37ca466db70728f8 irqchip/gic: Add platform driver for non-root GICs that require RPM
:::::: TO: Jon Hunter <jonathanh-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
:::::: CC: Marc Zyngier <marc.zyngier-5wv7dgnIgG8@public.gmane.org>
---
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: 33724 bytes --]
next prev parent reply other threads:[~2017-01-28 1:04 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-27 16:02 [PATCH 00/15] ACPI graph support Sakari Ailus
2017-01-27 16:02 ` [PATCH 01/15] ACPI / property: Add possiblity to retrieve parent firmware node Sakari Ailus
2017-01-27 16:02 ` [PATCH 02/15] device property: Add fwnode_get_parent() Sakari Ailus
2017-01-27 16:02 ` [PATCH 03/15] ACPI / property: Add fwnode_get_next_child_node() Sakari Ailus
2017-01-27 16:02 ` [PATCH 04/15] device property: Add fwnode_get_named_child_node() Sakari Ailus
2017-01-27 16:03 ` [PATCH 07/15] device property: Add fwnode_handle_get() Sakari Ailus
2017-01-27 16:03 ` [PATCH 08/15] of: Add of_fwnode_handle() to convert device nodes to fwnode_handle Sakari Ailus
2017-01-27 16:03 ` [PATCH 10/15] of: No need to include linux/property.h, linux/fwnode.h is sufficient Sakari Ailus
[not found] ` <1485532990-8431-11-git-send-email-sakari.ailus-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2017-01-28 1:04 ` kbuild test robot [this message]
2017-01-31 8:21 ` [PATCH v1.1 10/16] irqchip/gic: Add missing forward declaration for struct device Sakari Ailus
2017-01-27 16:03 ` [PATCH 11/15] device property: Obtain device's fwnode independently of FW type Sakari Ailus
2017-01-27 16:03 ` [PATCH 13/15] of: Add nop implementation of of_get_next_parent() Sakari Ailus
[not found] ` <1485532990-8431-1-git-send-email-sakari.ailus-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2017-01-27 16:03 ` [PATCH 05/15] ACPI / property: Add support for remote endpoints Sakari Ailus
2017-01-27 16:03 ` [PATCH 06/15] device " Sakari Ailus
2017-01-27 21:45 ` Rob Herring
2017-01-31 9:58 ` Sakari Ailus
[not found] ` <20170131095827.GS7139-S+BSfZ9RZZmRSg0ZkenSGLdO1Tsj/99ntUK59QYPAWc@public.gmane.org>
2017-02-02 17:19 ` Rob Herring
2017-02-03 9:59 ` Sakari Ailus
2017-01-27 16:03 ` [PATCH 09/15] driver core: Arrange headers alphabetically Sakari Ailus
2017-01-27 16:03 ` [PATCH 12/15] device property: Add support for fwnode endpoints Sakari Ailus
2017-01-27 16:03 ` [PATCH 14/15] device property: Add fwnode_get_next_parent() Sakari Ailus
2017-01-27 16:03 ` [PATCH 15/15] ACPI / DSD: Document references, ports and endpoints Sakari Ailus
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=201701280907.ntLLMTei%fengguang.wu@intel.com \
--to=lkp-ral2jqcrhueavxtiumwx3w@public.gmane.org \
--cc=ahs3-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=kbuild-all-JC7UmRfGjtg@public.gmane.org \
--cc=linux-acpi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=lorenzo.pieralisi-5wv7dgnIgG8@public.gmane.org \
--cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
--cc=mika.westerberg-VuQAYsv1563Yd54FQh9/CA@public.gmane.org \
--cc=rafael-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=sakari.ailus-VuQAYsv1563Yd54FQh9/CA@public.gmane.org \
--cc=sudeep.holla-5wv7dgnIgG8@public.gmane.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;
as well as URLs for NNTP newsgroup(s).