tree:
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.13
head: d63f2a88d5cfaad025f26e1107f3807d579654c5
commit: 343e55e71877415a23372388b3e0c59a9bba42f6 [195/201] ASoC: simple-card-utils:
Increase maximum number of links to 128
config: arm-randconfig-r014-20210419 (attached as .config)
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
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
#
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git/commit/...
git remote add asoc
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
git fetch --no-tags asoc for-5.13
git checkout 343e55e71877415a23372388b3e0c59a9bba42f6
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross W=1 ARCH=arm
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
sound/soc/generic/simple-card.c: In function 'simple_parse_of':
> sound/soc/generic/simple-card.c:478:1: warning: the frame size of
1544 bytes is larger than 1024 bytes [-Wframe-larger-than=]
478 | }
| ^
sound/soc/generic/simple-card.c: In function 'asoc_simple_probe':
sound/soc/generic/simple-card.c:706:1: warning: the frame size of 1544 bytes is larger
than 1024 bytes [-Wframe-larger-than=]
706 | }
| ^
--
sound/soc/generic/audio-graph-card.c: In function 'audio_graph_parse_of':
> sound/soc/generic/audio-graph-card.c:612:1: warning: the frame
size of 1544 bytes is larger than 1024 bytes [-Wframe-larger-than=]
612 | }
| ^
vim +478 sound/soc/generic/simple-card.c
39af7f7a03d007 Kuninori Morimoto 2021-03-26 444
e59289cda8dec0 Kuninori Morimoto 2019-03-20 445 static int simple_parse_of(struct
asoc_simple_priv *priv)
fa558c2801fc17 Kuninori Morimoto 2013-11-20 446 {
5be509576cf634 Kuninori Morimoto 2017-03-15 447 struct snd_soc_card *card =
simple_priv_to_card(priv);
17029e494edc68 Kuninori Morimoto 2018-12-20 448 struct link_info li;
c39291a76444e3 Kuninori Morimoto 2018-12-20 449 int ret;
da215354eb55c3 Kuninori Morimoto 2018-12-14 450
ad11e59f52d6fc Kuninori Morimoto 2019-03-20 451 ret = asoc_simple_parse_widgets(card,
PREFIX);
fa2760dd366c73 Kuninori Morimoto 2017-06-16 452 if (ret < 0)
da215354eb55c3 Kuninori Morimoto 2018-12-14 453 return ret;
9d681f5bfc8551 Xiubo Li 2014-02-08 454
ad11e59f52d6fc Kuninori Morimoto 2019-03-20 455 ret = asoc_simple_parse_routing(card,
PREFIX);
1fdb5d258e28de Kuninori Morimoto 2017-06-15 456 if (ret < 0)
da215354eb55c3 Kuninori Morimoto 2018-12-14 457 return ret;
d4c22094b256a7 Xiubo Li 2013-12-23 458
552f2d7edd38e2 Paul Cercueil 2019-04-26 459 ret =
asoc_simple_parse_pin_switches(card, PREFIX);
552f2d7edd38e2 Paul Cercueil 2019-04-26 460 if (ret < 0)
552f2d7edd38e2 Paul Cercueil 2019-04-26 461 return ret;
552f2d7edd38e2 Paul Cercueil 2019-04-26 462
2080437d375f4d Xiubo Li 2014-09-03 463 /* Single/Muti DAI link(s) & New
style of DT node */
17029e494edc68 Kuninori Morimoto 2018-12-20 464 memset(&li, 0, sizeof(li));
2d01a84605a55c Kuninori Morimoto 2018-12-20 465 ret = simple_for_each_link(priv,
&li,
2d01a84605a55c Kuninori Morimoto 2018-12-20 466 simple_dai_link_of,
2d01a84605a55c Kuninori Morimoto 2018-12-20 467 simple_dai_link_of_dpcm);
da215354eb55c3 Kuninori Morimoto 2018-12-14 468 if (ret < 0)
da215354eb55c3 Kuninori Morimoto 2018-12-14 469 return ret;
d947cdfd4be29c Kuninori Morimoto 2018-12-20 470
ad11e59f52d6fc Kuninori Morimoto 2019-03-20 471 ret = asoc_simple_parse_card_name(card,
PREFIX);
899a247cf6d5bb Nikita Yushchenko 2016-09-26 472 if (ret < 0)
da215354eb55c3 Kuninori Morimoto 2018-12-14 473 return ret;
f687d900d30a61 Kuninori Morimoto 2014-02-27 474
d9ffff696c5b46 Stephan Gerhold 2020-08-01 475 ret = snd_soc_of_parse_aux_devs(card,
PREFIX "aux-devs");
a03b0545c26d88 Kuninori Morimoto 2016-08-26 476
a03b0545c26d88 Kuninori Morimoto 2016-08-26 477 return ret;
fa558c2801fc17 Kuninori Morimoto 2013-11-20 @478 }
fa558c2801fc17 Kuninori Morimoto 2013-11-20 479
:::::: The code at line 478 was first introduced by commit
:::::: fa558c2801fc173758c742d836f3cc4621851557 ASoC: simple-card: add Device Tree
support
:::::: TO: Kuninori Morimoto <kuninori.morimoto.gx(a)renesas.com>
:::::: CC: Mark Brown <broonie(a)linaro.org>
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org