Building the Linux kernel with Clang and LLVM
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Naveen Manohar <naveen.m@intel.com>
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
	Mark Brown <broonie@kernel.org>,
	Liam Girdwood <liam.r.girdwood@intel.com>,
	Bard Liao <yung-chuan.liao@linux.intel.com>
Subject: [broonie-ci:file9lz3qR 69/69] sound/soc/intel/common/soc-acpi-intel-ptl-match.c:583:18: error: 'struct snd_soc_acpi_mach' has no member named 'get_function_tplg_files'
Date: Wed, 12 Mar 2025 03:55:34 +0800	[thread overview]
Message-ID: <202503120331.6lpwacmu-lkp@intel.com> (raw)

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/ci.git file9lz3qR
head:   db57ed1d27f9626ed0c8bb636fad6e9d767dcd4b
commit: db57ed1d27f9626ed0c8bb636fad6e9d767dcd4b [69/69] ASoC: Intel: soc-acpi-intel-ptl-match: Add cs42l43 support
config: arc-randconfig-002-20250312 (https://download.01.org/0day-ci/archive/20250312/202503120331.6lpwacmu-lkp@intel.com/config)
compiler: arc-elf-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250312/202503120331.6lpwacmu-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/202503120331.6lpwacmu-lkp@intel.com/

All errors (new ones prefixed by >>):

>> sound/soc/intel/common/soc-acpi-intel-ptl-match.c:583:18: error: 'struct snd_soc_acpi_mach' has no member named 'get_function_tplg_files'
     583 |                 .get_function_tplg_files = sof_sdw_get_tplg_files,
         |                  ^~~~~~~~~~~~~~~~~~~~~~~
>> sound/soc/intel/common/soc-acpi-intel-ptl-match.c:583:44: error: 'sof_sdw_get_tplg_files' undeclared here (not in a function)
     583 |                 .get_function_tplg_files = sof_sdw_get_tplg_files,
         |                                            ^~~~~~~~~~~~~~~~~~~~~~


vim +583 sound/soc/intel/common/soc-acpi-intel-ptl-match.c

   538	
   539	/* this table is used when there is no I2S codec present */
   540	struct snd_soc_acpi_mach snd_soc_acpi_intel_ptl_sdw_machines[] = {
   541		/* mockup tests need to be first */
   542		{
   543			.link_mask = GENMASK(3, 0),
   544			.links = sdw_mockup_headset_2amps_mic,
   545			.drv_name = "sof_sdw",
   546			.sof_tplg_filename = "sof-ptl-rt711-rt1308-rt715.tplg",
   547		},
   548		{
   549			.link_mask = BIT(0) | BIT(1) | BIT(3),
   550			.links = sdw_mockup_headset_1amp_mic,
   551			.drv_name = "sof_sdw",
   552			.sof_tplg_filename = "sof-ptl-rt711-rt1308-mono-rt715.tplg",
   553		},
   554		{
   555			.link_mask = GENMASK(2, 0),
   556			.links = sdw_mockup_mic_headset_1amp,
   557			.drv_name = "sof_sdw",
   558			.sof_tplg_filename = "sof-ptl-rt715-rt711-rt1308-mono.tplg",
   559		},
   560		{
   561			.link_mask = BIT(1) | BIT(2) | BIT(3),
   562			.links = ptl_cs42l43_l2_cs35l56x6_l13,
   563			.drv_name = "sof_sdw",
   564			.sof_tplg_filename = "sof-ptl-cs42l43-l2-cs35l56x6-l13.tplg",
   565		},
   566		{
   567			.link_mask = BIT(0),
   568			.links = sdw_mockup_multi_func,
   569			.drv_name = "sof_sdw",
   570			.sof_tplg_filename = "sof-ptl-rt722.tplg", /* Reuse the existing tplg file */
   571		},
   572		{
   573			.link_mask = BIT(0),
   574			.links = ptl_rvp,
   575			.drv_name = "sof_sdw",
   576			.sof_tplg_filename = "sof-ptl-rt711.tplg",
   577		},
   578		{
   579			.link_mask = BIT(3),
   580			.links = ptl_cs42l43_l3,
   581			.drv_name = "sof_sdw",
   582			.sof_tplg_filename = "sof-ptl-cs42l43-l3.tplg",
 > 583			.get_function_tplg_files = sof_sdw_get_tplg_files,

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

                 reply	other threads:[~2025-03-11 19:55 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=202503120331.6lpwacmu-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=broonie@kernel.org \
    --cc=liam.r.girdwood@intel.com \
    --cc=llvm@lists.linux.dev \
    --cc=naveen.m@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=yung-chuan.liao@linux.intel.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