linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
To: linus.walleij@linaro.org, gnurou@gmail.com, robh+dt@kernel.org,
	tglx@linutronix.de, jason@lakedaemon.net, broonie@kernel.org,
	lee.jones@linaro.org
Cc: linux-gpio@vger.kernel.org, alsa-devel@alsa-project.org,
	patches@opensource.wolfsonmicro.com,
	linux-kernel@vger.kernel.org, devicetree@vger.kernel.org
Subject: Re: [PATCH v4 15/17] ASoC: cs47l35: Add codec driver for Cirrus Logic CS47L35
Date: Mon, 7 Aug 2017 09:32:19 +0100	[thread overview]
Message-ID: <1502094739.5479.21.camel@rf-debian.wolfsonmicro.main> (raw)
In-Reply-To: <201707300644.LqBZNeVM%fengguang.wu@intel.com>

On Sun, 2017-07-30 at 07:01 +0800, kbuild test robot wrote:
> Hi Richard,
> 
> [auto build test ERROR on linus/master]
> [also build test ERROR on v4.13-rc2 next-20170728]
> [cannot apply to ljones-mfd/for-mfd-next asoc/for-next]
> [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/Richard-Fitzgerald/Add-support-for-Cirrus-Logic-CS47L35-L85-L90-L91-codecs/20170730-062737
> config: x86_64-allmodconfig (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 
> 
> Note: the linux-review/Richard-Fitzgerald/Add-support-for-Cirrus-Logic-CS47L35-L85-L90-L91-codecs/20170730-062737 HEAD 15487144eec6910ecfbbbbd97bb5a2c7efdb259f builds fine.
>       It only hurts bisectibility.
> 
> All errors (new ones prefixed by >>):
> 
> >> sound/soc//codecs/madera.c:146:2: error: 'MADERA_IRQ_DSP1_BUS_ERROR' undeclared here (not in a function)
>      MADERA_IRQ_DSP1_BUS_ERROR,
>      ^~~~~~~~~~~~~~~~~~~~~~~~~
> >> sound/soc//codecs/madera.c:147:2: error: 'MADERA_IRQ_DSP2_BUS_ERROR' undeclared here (not in a function)
>      MADERA_IRQ_DSP2_BUS_ERROR,
>      ^~~~~~~~~~~~~~~~~~~~~~~~~
> >> sound/soc//codecs/madera.c:148:2: error: 'MADERA_IRQ_DSP3_BUS_ERROR' undeclared here (not in a function)
>      MADERA_IRQ_DSP3_BUS_ERROR,
>      ^~~~~~~~~~~~~~~~~~~~~~~~~
> >> sound/soc//codecs/madera.c:149:2: error: 'MADERA_IRQ_DSP4_BUS_ERROR' undeclared here (not in a function)
>      MADERA_IRQ_DSP4_BUS_ERROR,
>      ^~~~~~~~~~~~~~~~~~~~~~~~~
> >> sound/soc//codecs/madera.c:150:2: error: 'MADERA_IRQ_DSP5_BUS_ERROR' undeclared here (not in a function)
>      MADERA_IRQ_DSP5_BUS_ERROR,
>      ^~~~~~~~~~~~~~~~~~~~~~~~~
> >> sound/soc//codecs/madera.c:151:2: error: 'MADERA_IRQ_DSP6_BUS_ERROR' undeclared here (not in a function)
>      MADERA_IRQ_DSP6_BUS_ERROR,
>      ^~~~~~~~~~~~~~~~~~~~~~~~~
> >> sound/soc//codecs/madera.c:152:2: error: 'MADERA_IRQ_DSP7_BUS_ERROR' undeclared here (not in a function)
>      MADERA_IRQ_DSP7_BUS_ERROR,
>      ^~~~~~~~~~~~~~~~~~~~~~~~~
> 

Oops. The rename of these somehow got merged into the top patch instead
of going into #14 where it should be. I'll wait a while and see what
comments I get on the earlier patches, maybe they will all be accepted
for merge and then I'll only have to reissue the top 4 patches to fix
this.

> vim +/MADERA_IRQ_DSP1_BUS_ERROR +146 sound/soc//codecs/madera.c
> 
> da1efc4cc Richard Fitzgerald 2017-07-28  130  
> da1efc4cc Richard Fitzgerald 2017-07-28  131  #define madera_fll_err(_fll, fmt, ...) \
> da1efc4cc Richard Fitzgerald 2017-07-28  132  	dev_err(_fll->madera->dev, "FLL%d: " fmt, _fll->id, ##__VA_ARGS__)
> da1efc4cc Richard Fitzgerald 2017-07-28  133  #define madera_fll_warn(_fll, fmt, ...) \
> da1efc4cc Richard Fitzgerald 2017-07-28  134  	dev_warn(_fll->madera->dev, "FLL%d: " fmt, _fll->id, ##__VA_ARGS__)
> da1efc4cc Richard Fitzgerald 2017-07-28  135  #define madera_fll_dbg(_fll, fmt, ...) \
> da1efc4cc Richard Fitzgerald 2017-07-28  136  	dev_dbg(_fll->madera->dev, "FLL%d: " fmt, _fll->id, ##__VA_ARGS__)
> da1efc4cc Richard Fitzgerald 2017-07-28  137  
> da1efc4cc Richard Fitzgerald 2017-07-28  138  #define madera_aif_err(_dai, fmt, ...) \
> da1efc4cc Richard Fitzgerald 2017-07-28  139  	dev_err(_dai->dev, "AIF%d: " fmt, _dai->id, ##__VA_ARGS__)
> da1efc4cc Richard Fitzgerald 2017-07-28  140  #define madera_aif_warn(_dai, fmt, ...) \
> da1efc4cc Richard Fitzgerald 2017-07-28  141  	dev_warn(_dai->dev, "AIF%d: " fmt, _dai->id, ##__VA_ARGS__)
> da1efc4cc Richard Fitzgerald 2017-07-28  142  #define madera_aif_dbg(_dai, fmt, ...) \
> da1efc4cc Richard Fitzgerald 2017-07-28  143  	dev_dbg(_dai->dev, "AIF%d: " fmt, _dai->id, ##__VA_ARGS__)
> da1efc4cc Richard Fitzgerald 2017-07-28  144  
> da1efc4cc Richard Fitzgerald 2017-07-28  145  static const int madera_dsp_bus_error_irqs[MADERA_MAX_ADSP] = {
> da1efc4cc Richard Fitzgerald 2017-07-28 @146  	MADERA_IRQ_DSP1_BUS_ERROR,
> da1efc4cc Richard Fitzgerald 2017-07-28 @147  	MADERA_IRQ_DSP2_BUS_ERROR,
> da1efc4cc Richard Fitzgerald 2017-07-28 @148  	MADERA_IRQ_DSP3_BUS_ERROR,
> da1efc4cc Richard Fitzgerald 2017-07-28 @149  	MADERA_IRQ_DSP4_BUS_ERROR,
> da1efc4cc Richard Fitzgerald 2017-07-28 @150  	MADERA_IRQ_DSP5_BUS_ERROR,
> da1efc4cc Richard Fitzgerald 2017-07-28 @151  	MADERA_IRQ_DSP6_BUS_ERROR,
> da1efc4cc Richard Fitzgerald 2017-07-28 @152  	MADERA_IRQ_DSP7_BUS_ERROR,
> da1efc4cc Richard Fitzgerald 2017-07-28  153  };
> da1efc4cc Richard Fitzgerald 2017-07-28  154  
> 
> :::::: The code at line 146 was first introduced by commit
> :::::: da1efc4cc715281f9599274bb5ff408b19cd3335 ASoC: madera: Add common support for Cirrus Logic Madera codecs
> 
> :::::: TO: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
> :::::: CC: 0day robot <fengguang.wu@intel.com>
> 
> ---
> 0-DAY kernel test infrastructure                Open Source Technology Center
> https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

  reply	other threads:[~2017-08-07  8:32 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-28  9:47 [PATCH v4 00/17] Add support for Cirrus Logic CS47L35/L85/L90/L91 codecs Richard Fitzgerald
2017-07-28  9:47 ` [PATCH v4 01/17] mfd: madera: Add register definitions for Cirrus Logic Madera codecs Richard Fitzgerald
2017-08-08 11:03   ` Lee Jones
2017-07-28  9:47 ` [PATCH v4 02/17] mfd: madera: Add DT bindings " Richard Fitzgerald
2017-07-28  9:47 ` [PATCH v4 03/17] mfd: madera: Add common support " Richard Fitzgerald
2017-08-08 11:13   ` Lee Jones
2017-07-28  9:47 ` [PATCH v4 04/17] mfd: madera: Register map tables for Cirrus Logic CS47L35 Richard Fitzgerald
2017-07-28  9:47 ` [PATCH v4 05/17] mfd: madera: Register map tables for Cirrus Logic CS47L85 Richard Fitzgerald
2017-07-28  9:47 ` [PATCH v4 06/17] mfd: madera: Register map tables for Cirrus Logic CS47L90/91 Richard Fitzgerald
2017-07-28  9:47 ` [PATCH v4 07/17] regulator: arizona-micsupp: Add support for Cirrus Logic Madera codecs Richard Fitzgerald
2017-07-28  9:47 ` [PATCH v4 08/17] regulator: arizona-ldo1: " Richard Fitzgerald
2017-07-28  9:47 ` [PATCH v4 09/17] irqchip: Add driver " Richard Fitzgerald
2017-07-28  9:47 ` [PATCH v4 10/17] pinctrl: madera: Add DT bindings " Richard Fitzgerald
2017-07-28  9:47 ` [PATCH v4 11/17] pinctrl: madera: Add driver " Richard Fitzgerald
2017-07-28  9:47 ` [PATCH v4 12/17] gpio: madera: Support Cirrus Logic Madera class codecs Richard Fitzgerald
2017-07-28  9:47 ` [PATCH v4 13/17] ASoC: madera: Add DT bindings for Cirrus Logic Madera codecs Richard Fitzgerald
2017-07-28  9:47 ` [PATCH v4 14/17] ASoC: madera: Add common support " Richard Fitzgerald
2017-07-28  9:47 ` [PATCH v4 15/17] ASoC: cs47l35: Add codec driver for Cirrus Logic CS47L35 Richard Fitzgerald
2017-07-29 23:01   ` kbuild test robot
2017-08-07  8:32     ` Richard Fitzgerald [this message]
2017-07-28  9:47 ` [PATCH v4 16/17] ASoC: cs47l85: Add codec driver for Cirrus Logic CS47L85 Richard Fitzgerald
     [not found] ` <1501235239-11145-1-git-send-email-rf-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>
2017-07-28  9:47   ` [PATCH v4 17/17] ASoC: cs47l90: Add codec driver for Cirrus Logic CS47L90 Richard Fitzgerald

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=1502094739.5479.21.camel@rf-debian.wolfsonmicro.main \
    --to=rf@opensource.wolfsonmicro.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=gnurou@gmail.com \
    --cc=jason@lakedaemon.net \
    --cc=lee.jones@linaro.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=patches@opensource.wolfsonmicro.com \
    --cc=robh+dt@kernel.org \
    --cc=tglx@linutronix.de \
    /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).