All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v4 08/18] ASoC: mediatek: mt8195: Migrate to the common mtk_soundcard_startup
Date: Tue, 16 Apr 2024 00:33:45 +0800	[thread overview]
Message-ID: <202404160030.7UmbflCf-lkp@intel.com> (raw)
In-Reply-To: <20240409113310.303261-9-angelogioacchino.delregno@collabora.com>

Hi AngeloGioacchino,

kernel test robot noticed the following build errors:

[auto build test ERROR on broonie-sound/for-next]
[also build test ERROR on robh/for-next broonie-spi/for-next linus/master v6.9-rc4 next-20240415]
[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#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/AngeloGioacchino-Del-Regno/ASoC-mediatek-Add-common-machine-soundcard-driver-probe-mechanism/20240409-194124
base:   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
patch link:    https://lore.kernel.org/r/20240409113310.303261-9-angelogioacchino.delregno%40collabora.com
patch subject: [PATCH v4 08/18] ASoC: mediatek: mt8195: Migrate to the common mtk_soundcard_startup
config: i386-buildonly-randconfig-004-20240415 (https://download.01.org/0day-ci/archive/20240416/202404160030.7UmbflCf-lkp@intel.com/config)
compiler: gcc-7 (Ubuntu 7.5.0-6ubuntu2) 7.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240416/202404160030.7UmbflCf-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202404160030.7UmbflCf-lkp@intel.com/

All errors (new ones prefixed by >>):

>> sound/soc/mediatek/mt8195/mt8195-mt6359.c:1451:12: error: initializer element is not constant
      .rates = mt8195_rate_constraint,
               ^~~~~~~~~~~~~~~~~~~~~~
   sound/soc/mediatek/mt8195/mt8195-mt6359.c:1451:12: note: (near initialization for 'mt8195_pcm_constraints[0].rates')
   sound/soc/mediatek/mt8195/mt8195-mt6359.c:1458:12: error: initializer element is not constant
      .rates = mt8195_rate_constraint,
               ^~~~~~~~~~~~~~~~~~~~~~
   sound/soc/mediatek/mt8195/mt8195-mt6359.c:1458:12: note: (near initialization for 'mt8195_pcm_constraints[1].rates')
   sound/soc/mediatek/mt8195/mt8195-mt6359.c:1465:12: error: initializer element is not constant
      .rates = mt8195_rate_constraint,
               ^~~~~~~~~~~~~~~~~~~~~~
   sound/soc/mediatek/mt8195/mt8195-mt6359.c:1465:12: note: (near initialization for 'mt8195_pcm_constraints[2].rates')


vim +1451 sound/soc/mediatek/mt8195/mt8195-mt6359.c

  1444	
  1445	static const struct mtk_pcm_constraints_data mt8195_pcm_constraints[MTK_CONSTRAINT_HDMIDP + 1] = {
  1446		[MTK_CONSTRAINT_PLAYBACK] = {
  1447			.channels = {
  1448				.list = mt8195_pcm_playback_channels,
  1449				.count = ARRAY_SIZE(mt8195_pcm_playback_channels)
  1450			},
> 1451			.rates = mt8195_rate_constraint,
  1452		},
  1453		[MTK_CONSTRAINT_CAPTURE] = {
  1454			.channels = {
  1455				.list = mt8195_pcm_capture_channels,
  1456				.count = ARRAY_SIZE(mt8195_pcm_capture_channels)
  1457			},
  1458			.rates = mt8195_rate_constraint,
  1459		},
  1460		[MTK_CONSTRAINT_HDMIDP] = {
  1461			.channels = {
  1462				.list = mt8195_pcm_hdmidp_channels,
  1463				.count = ARRAY_SIZE(mt8195_pcm_hdmidp_channels)
  1464			},
  1465			.rates = mt8195_rate_constraint,
  1466		},
  1467	};
  1468	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

  parent reply	other threads:[~2024-04-15 16:33 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-09 11:32 [PATCH v4 00/18] SoC: Cleanup MediaTek soundcard machine drivers AngeloGioacchino Del Regno
2024-04-09 11:32 ` AngeloGioacchino Del Regno
2024-04-09 11:32 ` [PATCH v4 01/18] ASoC: mediatek: Add common machine soundcard driver probe mechanism AngeloGioacchino Del Regno
2024-04-09 11:32   ` AngeloGioacchino Del Regno
2024-04-10 12:42   ` Alexandre Mergnat
2024-04-10 12:42     ` Alexandre Mergnat
2024-04-09 11:32 ` [PATCH v4 02/18] ASoC: mediatek: common: Constify struct mtk_sof_priv AngeloGioacchino Del Regno
2024-04-09 11:32   ` AngeloGioacchino Del Regno
2024-04-10 12:46   ` Alexandre Mergnat
2024-04-10 12:46     ` Alexandre Mergnat
2024-04-09 11:32 ` [PATCH v4 03/18] ASoC: mediatek: mt8188: Migrate to mtk_soundcard_common_probe AngeloGioacchino Del Regno
2024-04-09 11:32   ` AngeloGioacchino Del Regno
2024-04-10 12:58   ` Alexandre Mergnat
2024-04-10 12:58     ` Alexandre Mergnat
2024-04-09 11:32 ` [PATCH v4 04/18] ASoC: mediatek: mt8195: " AngeloGioacchino Del Regno
2024-04-09 11:32   ` AngeloGioacchino Del Regno
2024-04-10 13:46   ` Alexandre Mergnat
2024-04-10 13:46     ` Alexandre Mergnat
2024-04-09 11:32 ` [PATCH v4 05/18] ASoC: mediatek: mt8192: " AngeloGioacchino Del Regno
2024-04-09 11:32   ` AngeloGioacchino Del Regno
2024-04-10 13:59   ` Alexandre Mergnat
2024-04-10 13:59     ` Alexandre Mergnat
2024-04-10 15:28     ` AngeloGioacchino Del Regno
2024-04-10 15:28       ` AngeloGioacchino Del Regno
2024-04-09 11:32 ` [PATCH v4 06/18] ASoC: mediatek: mt8186: " AngeloGioacchino Del Regno
2024-04-09 11:32   ` AngeloGioacchino Del Regno
2024-04-10 14:02   ` Alexandre Mergnat
2024-04-10 14:02     ` Alexandre Mergnat
2024-04-09 11:32 ` [PATCH v4 07/18] ASoC: mediatek: Add common snd_soc_ops .startup() callback AngeloGioacchino Del Regno
2024-04-09 11:32   ` AngeloGioacchino Del Regno
2024-04-10 14:27   ` Alexandre Mergnat
2024-04-10 14:27     ` Alexandre Mergnat
2024-04-09 11:33 ` [PATCH v4 08/18] ASoC: mediatek: mt8195: Migrate to the common mtk_soundcard_startup AngeloGioacchino Del Regno
2024-04-09 11:33   ` AngeloGioacchino Del Regno
2024-04-10 14:54   ` Alexandre Mergnat
2024-04-10 14:54     ` Alexandre Mergnat
2024-04-15 16:33   ` kernel test robot [this message]
2024-04-09 11:33 ` [PATCH v4 09/18] ASoC: mediatek: mt8192: " AngeloGioacchino Del Regno
2024-04-09 11:33   ` AngeloGioacchino Del Regno
2024-04-10 14:55   ` Alexandre Mergnat
2024-04-10 14:55     ` Alexandre Mergnat
2024-04-09 11:33 ` [PATCH v4 10/18] ASoC: mediatek: mt8186-rt1019: " AngeloGioacchino Del Regno
2024-04-09 11:33   ` AngeloGioacchino Del Regno
2024-04-10 15:07   ` Alexandre Mergnat
2024-04-10 15:07     ` Alexandre Mergnat
2024-04-09 11:33 ` [PATCH v4 11/18] ASoC: mediatek: Add common mtk_afe_component_probe callback AngeloGioacchino Del Regno
2024-04-09 11:33   ` AngeloGioacchino Del Regno
2024-04-10 15:13   ` Alexandre Mergnat
2024-04-10 15:13     ` Alexandre Mergnat
2024-04-09 11:33 ` [PATCH v4 12/18] ASoC: mediatek: Use common mtk_afe_pcm_platform with common probe cb AngeloGioacchino Del Regno
2024-04-09 11:33   ` AngeloGioacchino Del Regno
2024-04-10 15:14   ` Alexandre Mergnat
2024-04-10 15:14     ` Alexandre Mergnat
2024-04-09 11:33 ` [PATCH v4 13/18] ASoC: mediatek: mt8186: Unify mt8186-mt6366 machine drivers AngeloGioacchino Del Regno
2024-04-09 11:33   ` AngeloGioacchino Del Regno
2024-04-10 15:38   ` Alexandre Mergnat
2024-04-10 15:38     ` Alexandre Mergnat
2024-04-09 11:33 ` [PATCH v4 14/18] ASoC: dt-bindings: mt8195: Document audio-routing and dai-link subnode AngeloGioacchino Del Regno
2024-04-09 11:33   ` AngeloGioacchino Del Regno
2024-04-09 11:33 ` [PATCH v4 15/18] ASoC: dt-bindings: mt8192: " AngeloGioacchino Del Regno
2024-04-09 11:33   ` AngeloGioacchino Del Regno
2024-04-09 11:33 ` [PATCH v4 16/18] ASoC: dt-bindings: mt8186: " AngeloGioacchino Del Regno
2024-04-09 11:33   ` AngeloGioacchino Del Regno
2024-04-09 11:33 ` [PATCH v4 17/18] arm64: dts: mediatek: mt8195-cherry: Specify sound DAI links and routing AngeloGioacchino Del Regno
2024-04-09 11:33   ` AngeloGioacchino Del Regno
2024-04-09 11:33 ` [PATCH v4 18/18] arm64: dts: mediatek: mt8186-corsola: " AngeloGioacchino Del Regno
2024-04-09 11:33   ` AngeloGioacchino Del Regno

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=202404160030.7UmbflCf-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    /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.