From: kernel test robot <lkp@intel.com>
To: Otavio Salvador <otavio@ossystems.com.br>
Cc: oe-kbuild-all@lists.linux.dev
Subject: [freescale-fslc:6.1-2.1.x-imx 183/16025] sound/soc/sof/amd/acp-common.c:78:19: error: incompatible function pointer types initializing 'int (*)(struct snd_sof_dev *, struct snd_sof_pcm_stream *, void *, size_t)' (aka 'int (*)(struct snd_sof_dev *, struct snd_sof_pcm_stream *, void *, unsigned in...
Date: Sun, 17 Dec 2023 06:57:04 +0800 [thread overview]
Message-ID: <202312170625.7xMSiIpI-lkp@intel.com> (raw)
Hi Daniel,
FYI, the error/warning still remains.
tree: https://github.com/Freescale/linux-fslc 6.1-2.1.x-imx
head: 241e2f51bd87beb652196d1db92f0387c1209bfb
commit: a5cbb6f360195a5df5a00c415160d0458ed7a0ca [183/16025] ASoC: SOF: Refactor ipc_msg_data to prepare for compress API
config: i386-randconfig-003-20231217 (https://download.01.org/0day-ci/archive/20231217/202312170625.7xMSiIpI-lkp@intel.com/config)
compiler: clang version 16.0.4 (https://github.com/llvm/llvm-project.git ae42196bc493ffe877a7e3dff8be32035dea4d07)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231217/202312170625.7xMSiIpI-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/202312170625.7xMSiIpI-lkp@intel.com/
All errors (new ones prefixed by >>):
>> sound/soc/sof/amd/acp-common.c:78:19: error: incompatible function pointer types initializing 'int (*)(struct snd_sof_dev *, struct snd_sof_pcm_stream *, void *, size_t)' (aka 'int (*)(struct snd_sof_dev *, struct snd_sof_pcm_stream *, void *, unsigned int)') with an expression of type 'int (struct snd_sof_dev *, struct snd_pcm_substream *, void *, size_t)' (aka 'int (struct snd_sof_dev *, struct snd_pcm_substream *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
.ipc_msg_data = acp_sof_ipc_msg_data,
^~~~~~~~~~~~~~~~~~~~
1 error generated.
vim +78 sound/soc/sof/amd/acp-common.c
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 53
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 54 /* AMD Common DSP ops */
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 55 struct snd_sof_dsp_ops sof_acp_common_ops = {
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 56 /* probe and remove */
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 57 .probe = amd_sof_acp_probe,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 58 .remove = amd_sof_acp_remove,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 59
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 60 /* Register IO */
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 61 .write = sof_io_write,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 62 .read = sof_io_read,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 63
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 64 /* Block IO */
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 65 .block_read = acp_dsp_block_read,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 66 .block_write = acp_dsp_block_write,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 67
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 68 /*Firmware loading */
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 69 .load_firmware = snd_sof_load_firmware_memcpy,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 70 .pre_fw_run = acp_dsp_pre_fw_run,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 71 .get_bar_index = acp_get_bar_index,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 72
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 73 /* DSP core boot */
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 74 .run = acp_sof_dsp_run,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 75
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 76 /*IPC */
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 77 .send_msg = acp_sof_ipc_send_msg,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 @78 .ipc_msg_data = acp_sof_ipc_msg_data,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 79 .get_mailbox_offset = acp_sof_ipc_get_mailbox_offset,
40d3c041e2f871 V sujith kumar Reddy 2022-09-13 80 .get_window_offset = acp_sof_ipc_get_window_offset,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 81 .irq_thread = acp_sof_ipc_irq_thread,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 82
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 83 /* stream callbacks */
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 84 .pcm_open = acp_pcm_open,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 85 .pcm_close = acp_pcm_close,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 86 .pcm_hw_params = acp_pcm_hw_params,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 87
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 88 .hw_info = SNDRV_PCM_INFO_MMAP |
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 89 SNDRV_PCM_INFO_MMAP_VALID |
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 90 SNDRV_PCM_INFO_INTERLEAVED |
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 91 SNDRV_PCM_INFO_PAUSE |
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 92 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 93
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 94 /* Machine driver callbacks */
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 95 .machine_select = amd_sof_machine_select,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 96 .machine_register = sof_machine_register,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 97 .machine_unregister = sof_machine_unregister,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 98
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 99 /* Trace Logger */
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 100 .trace_init = acp_sof_trace_init,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 101 .trace_release = acp_sof_trace_release,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 102
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 103 /* PM */
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 104 .suspend = amd_sof_acp_suspend,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 105 .resume = amd_sof_acp_resume,
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 106 };
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 107 EXPORT_SYMBOL_NS(sof_acp_common_ops, SND_SOC_SOF_AMD_COMMON);
4da6b033f5454c Ajit Kumar Pandey 2022-09-13 108
:::::: The code at line 78 was first introduced by commit
:::::: 4da6b033f5454ccbac2d5795d7edfb3f2a777104 ASoC: SOF: amd: Make ACP core code generic for newer SOC transition
:::::: TO: Ajit Kumar Pandey <AjitKumar.Pandey@amd.com>
:::::: CC: Mark Brown <broonie@kernel.org>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
reply other threads:[~2023-12-16 22:58 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=202312170625.7xMSiIpI-lkp@intel.com \
--to=lkp@intel.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=otavio@ossystems.com.br \
/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.