All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: vamshi.krishna.gopal@intel.com, alsa-devel@alsa-project.org
Cc: kbuild-all@lists.01.org, harshapriya.n@intel.com,
	clang-built-linux@googlegroups.com, broonie@kernel.org,
	sathya.prakash.m.r@intel.com, biernacki@google.com,
	vamshi.krishna.gopal@intel.com, pierre-louis.bossart@intel.com
Subject: Re: [PATCH 2/2] ASoc: Intel: board: add BE DAI link for WoV
Date: Thu, 25 Mar 2021 07:39:40 +0800	[thread overview]
Message-ID: <202103250750.r8lD1Tky-lkp@intel.com> (raw)
In-Reply-To: <20210324175200.44922-3-vamshi.krishna.gopal@intel.com>

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

Hi,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on asoc/for-next]
[also build test ERROR on sound/for-next v5.12-rc4 next-20210324]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/vamshi-krishna-gopal-intel-com/kbl_da7219_max9357a-machine-changes-for-wov-and-MST/20210325-015625
base:   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
config: x86_64-randconfig-a015-20210325 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project a4fb88669cd98db6fef7dcac88e3ec425d40c00d)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # install x86_64 cross compiling tool for clang build
        # apt-get install binutils-x86-64-linux-gnu
        # https://github.com/0day-ci/linux/commit/53b070ce8badeefb7fde6432ed4a5078cefe28e3
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review vamshi-krishna-gopal-intel-com/kbl_da7219_max9357a-machine-changes-for-wov-and-MST/20210325-015625
        git checkout 53b070ce8badeefb7fde6432ed4a5078cefe28e3
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> sound/soc/intel/boards/kbl_da7219_max98357a.c:340:22: error: use of undeclared identifier 'ch_mono'
           .count = ARRAY_SIZE(ch_mono),
                               ^
>> sound/soc/intel/boards/kbl_da7219_max98357a.c:340:22: error: use of undeclared identifier 'ch_mono'
>> sound/soc/intel/boards/kbl_da7219_max98357a.c:340:22: error: use of undeclared identifier 'ch_mono'
   sound/soc/intel/boards/kbl_da7219_max98357a.c:341:11: error: use of undeclared identifier 'ch_mono'
           .list  = ch_mono,
                    ^
>> sound/soc/intel/boards/kbl_da7219_max98357a.c:353:7: error: use of undeclared identifier 'constraints_16000'; did you mean 'constraints_rates'?
                                           &constraints_16000);
                                            ^~~~~~~~~~~~~~~~~
                                            constraints_rates
   sound/soc/intel/boards/kbl_da7219_max98357a.c:251:48: note: 'constraints_rates' declared here
   static const struct snd_pcm_hw_constraint_list constraints_rates = {
                                                  ^
   5 errors generated.


vim +/ch_mono +340 sound/soc/intel/boards/kbl_da7219_max98357a.c

   338	
   339	static const struct snd_pcm_hw_constraint_list constraints_refcap = {
 > 340		.count = ARRAY_SIZE(ch_mono),
   341		.list  = ch_mono,
   342	};
   343	
   344	static int kabylake_refcap_startup(struct snd_pcm_substream *substream)
   345	{
   346		substream->runtime->hw.channels_max = 1;
   347		snd_pcm_hw_constraint_list(substream->runtime, 0,
   348						SNDRV_PCM_HW_PARAM_CHANNELS,
   349						&constraints_refcap);
   350	
   351		return snd_pcm_hw_constraint_list(substream->runtime, 0,
   352						SNDRV_PCM_HW_PARAM_RATE,
 > 353						&constraints_16000);
   354	}
   355	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 29982 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH 2/2] ASoc: Intel: board: add BE DAI link for WoV
Date: Thu, 25 Mar 2021 07:39:40 +0800	[thread overview]
Message-ID: <202103250750.r8lD1Tky-lkp@intel.com> (raw)
In-Reply-To: <20210324175200.44922-3-vamshi.krishna.gopal@intel.com>

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

Hi,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on asoc/for-next]
[also build test ERROR on sound/for-next v5.12-rc4 next-20210324]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/vamshi-krishna-gopal-intel-com/kbl_da7219_max9357a-machine-changes-for-wov-and-MST/20210325-015625
base:   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
config: x86_64-randconfig-a015-20210325 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project a4fb88669cd98db6fef7dcac88e3ec425d40c00d)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # install x86_64 cross compiling tool for clang build
        # apt-get install binutils-x86-64-linux-gnu
        # https://github.com/0day-ci/linux/commit/53b070ce8badeefb7fde6432ed4a5078cefe28e3
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review vamshi-krishna-gopal-intel-com/kbl_da7219_max9357a-machine-changes-for-wov-and-MST/20210325-015625
        git checkout 53b070ce8badeefb7fde6432ed4a5078cefe28e3
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> sound/soc/intel/boards/kbl_da7219_max98357a.c:340:22: error: use of undeclared identifier 'ch_mono'
           .count = ARRAY_SIZE(ch_mono),
                               ^
>> sound/soc/intel/boards/kbl_da7219_max98357a.c:340:22: error: use of undeclared identifier 'ch_mono'
>> sound/soc/intel/boards/kbl_da7219_max98357a.c:340:22: error: use of undeclared identifier 'ch_mono'
   sound/soc/intel/boards/kbl_da7219_max98357a.c:341:11: error: use of undeclared identifier 'ch_mono'
           .list  = ch_mono,
                    ^
>> sound/soc/intel/boards/kbl_da7219_max98357a.c:353:7: error: use of undeclared identifier 'constraints_16000'; did you mean 'constraints_rates'?
                                           &constraints_16000);
                                            ^~~~~~~~~~~~~~~~~
                                            constraints_rates
   sound/soc/intel/boards/kbl_da7219_max98357a.c:251:48: note: 'constraints_rates' declared here
   static const struct snd_pcm_hw_constraint_list constraints_rates = {
                                                  ^
   5 errors generated.


vim +/ch_mono +340 sound/soc/intel/boards/kbl_da7219_max98357a.c

   338	
   339	static const struct snd_pcm_hw_constraint_list constraints_refcap = {
 > 340		.count = ARRAY_SIZE(ch_mono),
   341		.list  = ch_mono,
   342	};
   343	
   344	static int kabylake_refcap_startup(struct snd_pcm_substream *substream)
   345	{
   346		substream->runtime->hw.channels_max = 1;
   347		snd_pcm_hw_constraint_list(substream->runtime, 0,
   348						SNDRV_PCM_HW_PARAM_CHANNELS,
   349						&constraints_refcap);
   350	
   351		return snd_pcm_hw_constraint_list(substream->runtime, 0,
   352						SNDRV_PCM_HW_PARAM_RATE,
 > 353						&constraints_16000);
   354	}
   355	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 29982 bytes --]

  parent reply	other threads:[~2021-03-24 23:42 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-24 17:51 [PATCH 0/2] kbl_da7219_max9357a machine changes for wov and MST vamshi.krishna.gopal
2021-03-24 17:51 ` [PATCH 1/2] ASoC: Intel: kbl: Add MST route change to kbl machine drivers vamshi.krishna.gopal
2021-03-24 18:34   ` Pierre-Louis Bossart
2021-03-25 18:07     ` Gopal, Vamshi Krishna
2021-03-25 22:05       ` Pierre-Louis Bossart
2021-03-31 18:49         ` Gopal, Vamshi Krishna
2021-03-24 17:52 ` [PATCH 2/2] ASoc: Intel: board: add BE DAI link for WoV vamshi.krishna.gopal
2021-03-24 18:43   ` Pierre-Louis Bossart
2021-03-24 23:39   ` kernel test robot [this message]
2021-03-24 23:39     ` kernel test robot

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=202103250750.r8lD1Tky-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=biernacki@google.com \
    --cc=broonie@kernel.org \
    --cc=clang-built-linux@googlegroups.com \
    --cc=harshapriya.n@intel.com \
    --cc=kbuild-all@lists.01.org \
    --cc=pierre-louis.bossart@intel.com \
    --cc=sathya.prakash.m.r@intel.com \
    --cc=vamshi.krishna.gopal@intel.com \
    /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.