From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============3230678662987226404==" MIME-Version: 1.0 From: kernel test robot To: kbuild-all@lists.01.org Subject: [freescale-fslc:5.10-2.1.x-imx 9402/16146] sound/soc/sof/intel/byt.c:613:27: error: 'intel_ipc_msg_data' undeclared here (not in a function); did you mean 'sof_ipc_msg_data'? Date: Wed, 08 Dec 2021 23:12:19 +0800 Message-ID: <202112082301.25fdlsf2-lkp@intel.com> List-Id: --===============3230678662987226404== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Hi Daniel, FYI, the error/warning still remains. tree: https://github.com/Freescale/linux-fslc 5.10-2.1.x-imx head: 97b03e732ae16a3b30736ac12cf838a5c2db3eca commit: f628121dfa77c1af3991c7d0fc91961da65a89bc [9402/16146] LF-3774-1 ASo= C: sof: Make Intel IPC stream ops generic config: alpha-allyesconfig (https://download.01.org/0day-ci/archive/2021120= 8/202112082301.25fdlsf2-lkp(a)intel.com/config) compiler: alpha-linux-gcc (GCC) 11.2.0 reproduce (this is a W=3D1 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/Freescale/linux-fslc/commit/f628121dfa77c1af39= 91c7d0fc91961da65a89bc git remote add freescale-fslc https://github.com/Freescale/linux-fs= lc git fetch --no-tags freescale-fslc 5.10-2.1.x-imx git checkout f628121dfa77c1af3991c7d0fc91961da65a89bc # save the config file to linux build tree mkdir build_dir COMPILER_INSTALL_PATH=3D$HOME/0day COMPILER=3Dgcc-11.2.0 make.cross= O=3Dbuild_dir ARCH=3Dalpha SHELL=3D/bin/bash If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot All errors (new ones prefixed by >>): >> sound/soc/sof/intel/byt.c:613:27: error: 'intel_ipc_msg_data' undeclared= here (not in a function); did you mean 'sof_ipc_msg_data'? 613 | .ipc_msg_data =3D intel_ipc_msg_data, | ^~~~~~~~~~~~~~~~~~ | sof_ipc_msg_data >> sound/soc/sof/intel/byt.c:614:27: error: 'intel_ipc_pcm_params' undeclar= ed here (not in a function); did you mean 'sof_ipc_pcm_params'? 614 | .ipc_pcm_params =3D intel_ipc_pcm_params, | ^~~~~~~~~~~~~~~~~~~~ | sof_ipc_pcm_params >> sound/soc/sof/intel/byt.c:628:27: error: 'intel_pcm_open' undeclared her= e (not in a function) 628 | .pcm_open =3D intel_pcm_open, | ^~~~~~~~~~~~~~ >> sound/soc/sof/intel/byt.c:629:27: error: 'intel_pcm_close' undeclared he= re (not in a function) 629 | .pcm_close =3D intel_pcm_close, | ^~~~~~~~~~~~~~~ vim +613 sound/soc/sof/intel/byt.c 9e42c5ca4a276a Liam Girdwood 2019-04-12 584 = 9e42c5ca4a276a Liam Girdwood 2019-04-12 585 const struct snd_sof_d= sp_ops sof_tng_ops =3D { 9e42c5ca4a276a Liam Girdwood 2019-04-12 586 /* device init */ 9e42c5ca4a276a Liam Girdwood 2019-04-12 587 .probe =3D tangier_p= ci_probe, 9e42c5ca4a276a Liam Girdwood 2019-04-12 588 = 9e42c5ca4a276a Liam Girdwood 2019-04-12 589 /* DSP core boot / re= set */ 9e42c5ca4a276a Liam Girdwood 2019-04-12 590 .run =3D byt_run, 9e42c5ca4a276a Liam Girdwood 2019-04-12 591 .reset =3D byt_reset, 9e42c5ca4a276a Liam Girdwood 2019-04-12 592 = 9e42c5ca4a276a Liam Girdwood 2019-04-12 593 /* Register IO */ 9e42c5ca4a276a Liam Girdwood 2019-04-12 594 .write =3D sof_io_wr= ite, 9e42c5ca4a276a Liam Girdwood 2019-04-12 595 .read =3D sof_io_rea= d, 9e42c5ca4a276a Liam Girdwood 2019-04-12 596 .write64 =3D sof_io_w= rite64, 9e42c5ca4a276a Liam Girdwood 2019-04-12 597 .read64 =3D sof_io_r= ead64, 9e42c5ca4a276a Liam Girdwood 2019-04-12 598 = 9e42c5ca4a276a Liam Girdwood 2019-04-12 599 /* Block IO */ 9e42c5ca4a276a Liam Girdwood 2019-04-12 600 .block_read =3D sof_b= lock_read, 9e42c5ca4a276a Liam Girdwood 2019-04-12 601 .block_write =3D sof_= block_write, 9e42c5ca4a276a Liam Girdwood 2019-04-12 602 = 9e42c5ca4a276a Liam Girdwood 2019-04-12 603 /* doorbell */ 9e42c5ca4a276a Liam Girdwood 2019-04-12 604 .irq_handler =3D byt_= irq_handler, 9e42c5ca4a276a Liam Girdwood 2019-04-12 605 .irq_thread =3D byt_i= rq_thread, 9e42c5ca4a276a Liam Girdwood 2019-04-12 606 = 9e42c5ca4a276a Liam Girdwood 2019-04-12 607 /* ipc */ 9e42c5ca4a276a Liam Girdwood 2019-04-12 608 .send_msg =3D byt_sen= d_msg, 83ee7ab1627b75 Daniel Baluta 2019-08-07 609 .fw_ready =3D sof_fw_= ready, 83ee7ab1627b75 Daniel Baluta 2019-08-07 610 .get_mailbox_offset = =3D byt_get_mailbox_offset, 83ee7ab1627b75 Daniel Baluta 2019-08-07 611 .get_window_offset = =3D byt_get_window_offset, 9e42c5ca4a276a Liam Girdwood 2019-04-12 612 = 9e42c5ca4a276a Liam Girdwood 2019-04-12 @613 .ipc_msg_data =3D int= el_ipc_msg_data, 9e42c5ca4a276a Liam Girdwood 2019-04-12 @614 .ipc_pcm_params =3D i= ntel_ipc_pcm_params, 9e42c5ca4a276a Liam Girdwood 2019-04-12 615 = 285880a23d105e Daniel Baluta 2019-12-04 616 /* machine driver */ 285880a23d105e Daniel Baluta 2019-12-04 617 .machine_select =3D b= yt_machine_select, 285880a23d105e Daniel Baluta 2019-12-04 618 .machine_register =3D= sof_machine_register, 285880a23d105e Daniel Baluta 2019-12-04 619 .machine_unregister = =3D sof_machine_unregister, 285880a23d105e Daniel Baluta 2019-12-04 620 .set_mach_params =3D = byt_set_mach_params, 285880a23d105e Daniel Baluta 2019-12-04 621 = 9e42c5ca4a276a Liam Girdwood 2019-04-12 622 /* debug */ 9e42c5ca4a276a Liam Girdwood 2019-04-12 623 .debug_map =3D byt_de= bugfs, 9e42c5ca4a276a Liam Girdwood 2019-04-12 624 .debug_map_count =3D = ARRAY_SIZE(byt_debugfs), 9e42c5ca4a276a Liam Girdwood 2019-04-12 625 .dbg_dump =3D byt_dum= p, 9e42c5ca4a276a Liam Girdwood 2019-04-12 626 = 9e42c5ca4a276a Liam Girdwood 2019-04-12 627 /* stream callbacks */ 9e42c5ca4a276a Liam Girdwood 2019-04-12 @628 .pcm_open =3D intel_p= cm_open, 9e42c5ca4a276a Liam Girdwood 2019-04-12 @629 .pcm_close =3D intel_= pcm_close, 9e42c5ca4a276a Liam Girdwood 2019-04-12 630 = 9e42c5ca4a276a Liam Girdwood 2019-04-12 631 /* module loading */ 9e42c5ca4a276a Liam Girdwood 2019-04-12 632 .load_module =3D snd_= sof_parse_module_memcpy, 9e42c5ca4a276a Liam Girdwood 2019-04-12 633 = 9e42c5ca4a276a Liam Girdwood 2019-04-12 634 /*Firmware loading */ 9e42c5ca4a276a Liam Girdwood 2019-04-12 635 .load_firmware =3D sn= d_sof_load_firmware_memcpy, 9e42c5ca4a276a Liam Girdwood 2019-04-12 636 = 9e42c5ca4a276a Liam Girdwood 2019-04-12 637 /* DAI drivers */ 9e42c5ca4a276a Liam Girdwood 2019-04-12 638 .drv =3D byt_dai, 9e42c5ca4a276a Liam Girdwood 2019-04-12 639 .num_drv =3D 3, /* we= have only 3 SSPs on byt*/ 27e322fabd508b Pierre-Louis Bossart 2019-10-24 640 = 27e322fabd508b Pierre-Louis Bossart 2019-10-24 641 /* ALSA HW info flags= */ 27e322fabd508b Pierre-Louis Bossart 2019-10-24 642 .hw_info =3D SNDRV_PC= M_INFO_MMAP | 27e322fabd508b Pierre-Louis Bossart 2019-10-24 643 SNDRV_PCM_INFO_MMAP= _VALID | 27e322fabd508b Pierre-Louis Bossart 2019-10-24 644 SNDRV_PCM_INFO_INTE= RLEAVED | 27e322fabd508b Pierre-Louis Bossart 2019-10-24 645 SNDRV_PCM_INFO_PAUS= E | 4c02a7bd43e22f Pierre-Louis Bossart 2019-10-24 646 SNDRV_PCM_INFO_BATC= H, 0f501c7cde4086 Pierre-Louis Bossart 2019-12-17 647 = 0f501c7cde4086 Pierre-Louis Bossart 2019-12-17 648 .arch_ops =3D &sof_xt= ensa_arch_ops, 9e42c5ca4a276a Liam Girdwood 2019-04-12 649 }; e42b19450866fb Pierre-Louis Bossart 2019-12-17 650 EXPORT_SYMBOL_NS(sof_t= ng_ops, SND_SOC_SOF_MERRIFIELD); 9e42c5ca4a276a Liam Girdwood 2019-04-12 651 = :::::: The code at line 613 was first introduced by commit :::::: 9e42c5ca4a276a668b11116704f5f0d66ab80608 ASoC: SOF: Intel: Add BYT, = CHT and BSW DSP HW support. :::::: TO: Liam Girdwood :::::: CC: Mark Brown --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org --===============3230678662987226404==--