lkml.org 
[lkml]   [2022]   [Jun]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
Subject[morimoto:sound-2022-06-23-v1 5/6] sound/soc/soc-compress.c:576:13: error: implicit declaration of function 'snd_soc_dai_stream_valid'; did you mean 'snd_soc_dai_stream_active'?
tree:   https://github.com/morimoto/linux sound-2022-06-23-v1
head: 89b1076b7f62654c8d386b8dd2faf8b315f2ac46
commit: 654b6b4d8e15ff4617278a6609e9dda51dda8169 [5/6] hoge
config: csky-randconfig-r016-20220622 (https://download.01.org/0day-ci/archive/20220623/202206231809.FEcnObQ7-lkp@intel.com/config)
compiler: csky-linux-gcc (GCC) 11.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://github.com/morimoto/linux/commit/654b6b4d8e15ff4617278a6609e9dda51dda8169
git remote add morimoto https://github.com/morimoto/linux
git fetch --no-tags morimoto sound-2022-06-23-v1
git checkout 654b6b4d8e15ff4617278a6609e9dda51dda8169
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.3.0 make.cross W=1 O=build_dir ARCH=csky SHELL=/bin/bash sound/soc/

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

All errors (new ones prefixed by >>):

sound/soc/soc-compress.c: In function 'snd_soc_new_compress':
>> sound/soc/soc-compress.c:576:13: error: implicit declaration of function 'snd_soc_dai_stream_valid'; did you mean 'snd_soc_dai_stream_active'? [-Werror=implicit-function-declaration]
576 | if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_PLAYBACK) &&
| ^~~~~~~~~~~~~~~~~~~~~~~~
| snd_soc_dai_stream_active
cc1: some warnings being treated as errors


vim +576 sound/soc/soc-compress.c

2a99ef0fdb35a0 Liam Girdwood 2014-01-17 535
6f0c42269f000b Jie Yang 2015-10-13 536 /**
6f0c42269f000b Jie Yang 2015-10-13 537 * snd_soc_new_compress - create a new compress.
6f0c42269f000b Jie Yang 2015-10-13 538 *
6f0c42269f000b Jie Yang 2015-10-13 539 * @rtd: The runtime for which we will create compress
6f0c42269f000b Jie Yang 2015-10-13 540 * @num: the device index number (zero based - shared with normal PCMs)
6f0c42269f000b Jie Yang 2015-10-13 541 *
6f0c42269f000b Jie Yang 2015-10-13 542 * Return: 0 for success, else error.
6f0c42269f000b Jie Yang 2015-10-13 543 */
6f0c42269f000b Jie Yang 2015-10-13 544 int snd_soc_new_compress(struct snd_soc_pcm_runtime *rtd, int num)
1245b7005de02d Namarta Kohli 2012-08-16 545 {
9e7e3738ab0e90 Kuninori Morimoto 2017-10-11 546 struct snd_soc_component *component;
c2233a266178f8 Kuninori Morimoto 2020-03-30 547 struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
c2233a266178f8 Kuninori Morimoto 2020-03-30 548 struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0);
1245b7005de02d Namarta Kohli 2012-08-16 549 struct snd_compr *compr;
2a99ef0fdb35a0 Liam Girdwood 2014-01-17 550 struct snd_pcm *be_pcm;
1245b7005de02d Namarta Kohli 2012-08-16 551 char new_name[64];
1245b7005de02d Namarta Kohli 2012-08-16 552 int ret = 0, direction = 0;
a1068045883ed4 Vinod Koul 2016-01-07 553 int playback = 0, capture = 0;
613fb50059cf19 Kuninori Morimoto 2020-01-10 554 int i;
1245b7005de02d Namarta Kohli 2012-08-16 555
7428d8c8bd7936 Kuninori Morimoto 2020-10-30 556 /*
7428d8c8bd7936 Kuninori Morimoto 2020-10-30 557 * make sure these are same value,
7428d8c8bd7936 Kuninori Morimoto 2020-10-30 558 * and then use these as equally
7428d8c8bd7936 Kuninori Morimoto 2020-10-30 559 */
7428d8c8bd7936 Kuninori Morimoto 2020-10-30 560 BUILD_BUG_ON((int)SNDRV_PCM_STREAM_PLAYBACK != (int)SND_COMPRESS_PLAYBACK);
7428d8c8bd7936 Kuninori Morimoto 2020-10-30 561 BUILD_BUG_ON((int)SNDRV_PCM_STREAM_CAPTURE != (int)SND_COMPRESS_CAPTURE);
7428d8c8bd7936 Kuninori Morimoto 2020-10-30 562
6e1276a5e613d2 Bard Liao 2020-02-25 563 if (rtd->num_cpus > 1 ||
6e1276a5e613d2 Bard Liao 2020-02-25 564 rtd->num_codecs > 1) {
141dfc9e3751f5 Charles Keepax 2018-01-26 565 dev_err(rtd->card->dev,
6e1276a5e613d2 Bard Liao 2020-02-25 566 "Compress ASoC: Multi CPU/Codec not supported\n");
8151d5e60232d3 Benoit Cousson 2014-07-08 567 return -EINVAL;
8151d5e60232d3 Benoit Cousson 2014-07-08 568 }
8151d5e60232d3 Benoit Cousson 2014-07-08 569
ccb4214f7f2a8b Jiasheng Jiang 2022-03-10 570 if (!codec_dai) {
ccb4214f7f2a8b Jiasheng Jiang 2022-03-10 571 dev_err(rtd->card->dev, "Missing codec\n");
ccb4214f7f2a8b Jiasheng Jiang 2022-03-10 572 return -EINVAL;
ccb4214f7f2a8b Jiasheng Jiang 2022-03-10 573 }
ccb4214f7f2a8b Jiasheng Jiang 2022-03-10 574
1245b7005de02d Namarta Kohli 2012-08-16 575 /* check client and interface hw capabilities */
467fece8fbc677 Kuninori Morimoto 2019-07-22 @576 if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_PLAYBACK) &&

:::::: The code at line 576 was first introduced by commit
:::::: 467fece8fbc6774a3a3bd0981e1a342fb5022706 ASoC: soc-dai: move snd_soc_dai_stream_valid() to soc-dai.c

:::::: TO: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
:::::: CC: Mark Brown <broonie@kernel.org>

--
0-DAY CI Kernel Test Service
https://01.org/lkp

\
 
 \ /
  Last update: 2022-06-23 12:18    [W:0.035 / U:0.040 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site