devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: kbuild-all@01.org, Rob Herring <robh+dt@kernel.org>,
	Mark Brown <broonie@kernel.org>,
	Linux-ALSA <alsa-devel@alsa-project.org>,
	Liam Girdwood <lgirdwood@gmail.com>, Simon <horms@verge.net.au>,
	Laurent <laurent.pinchart@ideasonboard.com>,
	Guennadi <g.liakhovetski@gmx.de>,
	Grant Likely <grant.likely@linaro.org>,
	Frank Rowand <frowand.list@gmail.com>,
	Linux-DT <devicetree@vger.kernel.org>,
	Linux-Kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v3 12/17] ASoC: simple-card-utils: add asoc_simple_card_try_to_probe_graph_card()
Date: Fri, 11 Nov 2016 10:07:17 +0800	[thread overview]
Message-ID: <201611111036.Ye7DcBzl%fengguang.wu@intel.com> (raw)
In-Reply-To: <87eg2ireua.wl%kuninori.morimoto.gx@renesas.com>

[-- Attachment #1: Type: text/plain, Size: 1737 bytes --]

Hi Kuninori,

[auto build test ERROR on asoc/for-next]
[also build test ERROR on v4.9-rc4 next-20161110]
[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/Kuninori-Morimoto/ASoC-add-OF-graph-base-simple-card/20161111-093231
base:   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
config: x86_64-randconfig-x010-201645 (attached as .config)
compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All error/warnings (new ones prefixed by >>):

   sound/soc/generic/simple-card-utils.c: In function 'asoc_simple_card_try_to_probe_graph_card':
>> sound/soc/generic/simple-card-utils.c:297:9: error: implicit declaration of function 'of_graph_get_top_port' [-Werror=implicit-function-declaration]
     node = of_graph_get_top_port(dev);
            ^~~~~~~~~~~~~~~~~~~~~
>> sound/soc/generic/simple-card-utils.c:297:7: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
     node = of_graph_get_top_port(dev);
          ^
   cc1: some warnings being treated as errors

vim +/of_graph_get_top_port +297 sound/soc/generic/simple-card-utils.c

   291	{
   292		struct platform_device_info pdevinfo;
   293		struct device_node *node;
   294		const char *compatible;
   295		int ret;
   296	
 > 297		node = of_graph_get_top_port(dev);
   298		if (!node || !info)
   299			/*
   300			 * It doesn't have graph base sound DT, or its infomation.

---
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: 23944 bytes --]

  reply	other threads:[~2016-11-11  2:07 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-11  1:16 [PATCH v3 00/17] ASoC: add OF graph base simple-card Kuninori Morimoto
2016-11-11  1:17 ` [PATCH v3 01/17] ASoC: soc-core: adjust for graph on snd_soc_of_parse_card_name Kuninori Morimoto
2016-11-11  1:18 ` [PATCH v3 02/17] ASoC: soc-core: adjust for graph on snd_soc_of_parse_audio_simple_widgets Kuninori Morimoto
2016-11-11  1:19 ` [PATCH v3 04/17] ASoC: soc-core: adjust for graph on snd_soc_of_parse_audio_prefix Kuninori Morimoto
     [not found] ` <87vavurf4y.wl%kuninori.morimoto.gx-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>
2016-11-11  1:18   ` [PATCH v3 03/17] ASoC: soc-core: adjust for graph on snd_soc_of_parse_audio_routing Kuninori Morimoto
2016-11-11  1:19   ` [PATCH v3 05/17] ASoC: soc-core: snd_soc_get_dai_name() become non static Kuninori Morimoto
2016-11-11  1:19   ` [PATCH v3 06/17] of_graph: add of_graph_get_remote_endpoint() Kuninori Morimoto
2016-11-11  1:21   ` [PATCH v3 11/17] ASoC: simple-card-utils: add asoc_simple_card_parse_graph_dai() Kuninori Morimoto
2016-11-11  1:22   ` [PATCH v3 12/17] ASoC: simple-card-utils: add asoc_simple_card_try_to_probe_graph_card() Kuninori Morimoto
2016-11-11  2:07     ` kbuild test robot [this message]
     [not found]       ` <201611111036.Ye7DcBzl%fengguang.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2016-11-16  2:07         ` Kuninori Morimoto
2016-11-11  1:20 ` [PATCH v3 07/17] of_graph: add of_graph_get_port_parent() Kuninori Morimoto
2016-11-11  1:20 ` [PATCH v3 08/17] of_graph: add of_graph_get_top_port() Kuninori Morimoto
2016-11-11  1:21 ` [PATCH v3 09/17] of_graph: add for_each_of_port() / for_each_of_endpoint_in_port() Kuninori Morimoto
2016-11-11  1:21 ` [PATCH v3 10/17] of_graph: add of_graph_get_port/endpoint_count() Kuninori Morimoto
2016-11-11  1:22 ` [PATCH v3 13/17] ASoC: simple-card-utils: adjust for graph on asoc_simple_card_parse_card_name Kuninori Morimoto
2016-11-11  1:23 ` [PATCH v3 14/17] ASoC: add simple-graph-card document Kuninori Morimoto
2016-11-11  1:24 ` [PATCH v3 15/17] ASoC: add simple-graph-card support Kuninori Morimoto
2016-11-11  1:24 ` [PATCH v3 16/17] ASoC: add simple-graph-scu-card document Kuninori Morimoto
2016-11-11  1:25 ` [PATCH v3 17/17] ASoC: add simple-graph-scu-card support Kuninori Morimoto

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=201611111036.Ye7DcBzl%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=frowand.list@gmail.com \
    --cc=g.liakhovetski@gmx.de \
    --cc=grant.likely@linaro.org \
    --cc=horms@verge.net.au \
    --cc=kbuild-all@01.org \
    --cc=kuninori.morimoto.gx@renesas.com \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robh+dt@kernel.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).