Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752363AbdHGIci (ORCPT ); Mon, 7 Aug 2017 04:32:38 -0400 Received: from mx0a-001ae601.pphosted.com ([67.231.149.25]:43314 "EHLO mx0b-001ae601.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751442AbdHGIcg (ORCPT ); Mon, 7 Aug 2017 04:32:36 -0400 Authentication-Results: ppops.net; spf=none smtp.mailfrom=rf@opensource.wolfsonmicro.com Message-ID: <1502094739.5479.21.camel@rf-debian.wolfsonmicro.main> Subject: Re: [PATCH v4 15/17] ASoC: cs47l35: Add codec driver for Cirrus Logic CS47L35 From: Richard Fitzgerald To: , , , , , , CC: , , , , Date: Mon, 7 Aug 2017 09:32:19 +0100 In-Reply-To: <201707300644.LqBZNeVM%fengguang.wu@intel.com> References: <201707300644.LqBZNeVM%fengguang.wu@intel.com> Content-Type: text/plain; charset="us-ascii" X-Mailer: Evolution 3.4.4-3 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 priorityscore=1501 malwarescore=0 suspectscore=0 phishscore=0 bulkscore=0 spamscore=0 clxscore=1011 lowpriorityscore=0 impostorscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1706020000 definitions=main-1708070147 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 5105 Lines: 87 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 > :::::: CC: 0day robot > > --- > 0-DAY kernel test infrastructure Open Source Technology Center > https://lists.01.org/pipermail/kbuild-all Intel Corporation