From: kernel test robot <lkp@intel.com>
To: Guoqing Jiang <guoqing.jiang@canonical.com>,
lgirdwood@gmail.com, broonie@kernel.org, perex@perex.cz,
tiwai@suse.com, angelogioacchino.delregno@collabora.com,
amergnat@baylibre.com
Cc: oe-kbuild-all@lists.linux.dev, zoran.zhan@mediatek.com,
guoqing.jiang@canonical.com, linux-sound@vger.kernel.org,
linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] ASoC: mediatek: mt8365-dai-i2s: pass correct size to mt8365_dai_set_priv
Date: Thu, 10 Jul 2025 00:38:25 +0800 [thread overview]
Message-ID: <202507100010.qEVMavru-lkp@intel.com> (raw)
In-Reply-To: <20250709053900.55171-1-guoqing.jiang@canonical.com>
Hi Guoqing,
kernel test robot noticed the following build errors:
[auto build test ERROR on broonie-sound/for-next]
[also build test ERROR on broonie-spi/for-next tiwai-sound/for-next tiwai-sound/for-linus linus/master v6.16-rc5 next-20250709]
[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/Guoqing-Jiang/ASoC-mediatek-mt8365-dai-i2s-pass-correct-size-to-mt8365_dai_set_priv/20250709-134028
base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
patch link: https://lore.kernel.org/r/20250709053900.55171-1-guoqing.jiang%40canonical.com
patch subject: [PATCH] ASoC: mediatek: mt8365-dai-i2s: pass correct size to mt8365_dai_set_priv
config: csky-randconfig-001-20250709 (https://download.01.org/0day-ci/archive/20250710/202507100010.qEVMavru-lkp@intel.com/config)
compiler: csky-linux-gcc (GCC) 15.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250710/202507100010.qEVMavru-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/202507100010.qEVMavru-lkp@intel.com/
All errors (new ones prefixed by >>):
sound/soc/mediatek/mt8365/mt8365-dai-i2s.c: In function 'mt8365_dai_i2s_set_priv':
>> sound/soc/mediatek/mt8365/mt8365-dai-i2s.c:819:43: error: invalid operands to binary & (have 'unsigned int' and 'struct mtk_afe_i2s_priv')
819 | &mt8365_i2s_priv[i]);
| ^~~~~~~~~~~~~~~~~~~
| |
| struct mtk_afe_i2s_priv
>> sound/soc/mediatek/mt8365/mt8365-dai-i2s.c:817:23: error: too few arguments to function 'mt8365_dai_set_priv'; expected 4, have 3
817 | ret = mt8365_dai_set_priv(afe, mt8365_i2s_priv[i].id,
| ^~~~~~~~~~~~~~~~~~~
In file included from sound/soc/mediatek/mt8365/mt8365-dai-i2s.c:14:
sound/soc/mediatek/mt8365/mt8365-afe-common.h:428:5: note: declared here
428 | int mt8365_dai_set_priv(struct mtk_base_afe *afe,
| ^~~~~~~~~~~~~~~~~~~
vim +819 sound/soc/mediatek/mt8365/mt8365-dai-i2s.c
402bbb13a195ca Alexandre Mergnat 2024-07-22 811
402bbb13a195ca Alexandre Mergnat 2024-07-22 812 static int mt8365_dai_i2s_set_priv(struct mtk_base_afe *afe)
402bbb13a195ca Alexandre Mergnat 2024-07-22 813 {
402bbb13a195ca Alexandre Mergnat 2024-07-22 814 int i, ret;
402bbb13a195ca Alexandre Mergnat 2024-07-22 815
402bbb13a195ca Alexandre Mergnat 2024-07-22 816 for (i = 0; i < DAI_I2S_NUM; i++) {
402bbb13a195ca Alexandre Mergnat 2024-07-22 @817 ret = mt8365_dai_set_priv(afe, mt8365_i2s_priv[i].id,
08cb0e42ff0631 Guoqing Jiang 2025-07-09 818 sizeof(mt8365_i2s_priv[i])
402bbb13a195ca Alexandre Mergnat 2024-07-22 @819 &mt8365_i2s_priv[i]);
402bbb13a195ca Alexandre Mergnat 2024-07-22 820 if (ret)
402bbb13a195ca Alexandre Mergnat 2024-07-22 821 return ret;
402bbb13a195ca Alexandre Mergnat 2024-07-22 822 }
402bbb13a195ca Alexandre Mergnat 2024-07-22 823 return 0;
402bbb13a195ca Alexandre Mergnat 2024-07-22 824 }
402bbb13a195ca Alexandre Mergnat 2024-07-22 825
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2025-07-09 16:38 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-09 5:39 [PATCH] ASoC: mediatek: mt8365-dai-i2s: pass correct size to mt8365_dai_set_priv Guoqing Jiang
2025-07-09 16:38 ` kernel test robot [this message]
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=202507100010.qEVMavru-lkp@intel.com \
--to=lkp@intel.com \
--cc=amergnat@baylibre.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=broonie@kernel.org \
--cc=guoqing.jiang@canonical.com \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-sound@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=perex@perex.cz \
--cc=tiwai@suse.com \
--cc=zoran.zhan@mediatek.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 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).