From: syed saba kareem <ssabakar@amd.com>
To: kernel test robot <lkp@intel.com>,
Syed Saba Kareem <Syed.SabaKareem@amd.com>
Cc: oe-kbuild-all@lists.linux.dev,
Linux Memory Management List <linux-mm@kvack.org>,
Mark Brown <broonie@kernel.org>
Subject: Re: [linux-next:master 14482/15964] sound/soc/amd/acp/acp-legacy-common.c:392:19: error: implicit declaration of function 'acpi_find_child_device'; did you mean 'acpi_match_device'?
Date: Thu, 2 Nov 2023 12:44:06 +0530 [thread overview]
Message-ID: <b969cf18-d326-493c-89ba-bbf9f51b8eb2@amd.com> (raw)
In-Reply-To: <202310312340.o6CthxSp-lkp@intel.com>
On 10/31/23 20:39, kernel test robot wrote:
> tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
> head: 9c2d379d63450ae464eeab45462e0cb573cd97d0
> commit: 3a94c8ad0aae2b14a55059869871ea2d199af489 [14482/15964] ASoC: amd: acp: add code for scanning acp pdm controller
> config: x86_64-buildonly-randconfig-001-20231031 (https://download.01.org/0day-ci/archive/20231031/202310312340.o6CthxSp-lkp@intel.com/config)
> compiler: gcc-11 (Debian 11.3.0-12) 11.3.0
> reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231031/202310312340.o6CthxSp-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/202310312340.o6CthxSp-lkp@intel.com/
>
> Note: the linux-next/master HEAD 9c2d379d63450ae464eeab45462e0cb573cd97d0 builds fine.
> It may have been fixed somewhere.
>
> All errors (new ones prefixed by >>):
>
> sound/soc/amd/acp/acp-legacy-common.c: In function 'check_acp_pdm':
>>> sound/soc/amd/acp/acp-legacy-common.c:392:19: error: implicit declaration of function 'acpi_find_child_device'; did you mean 'acpi_match_device'? [-Werror=implicit-function-declaration]
> 392 | pdm_dev = acpi_find_child_device(ACPI_COMPANION(&pci->dev), pdm_addr, 0);
> | ^~~~~~~~~~~~~~~~~~~~~~
> | acpi_match_device
> sound/soc/amd/acp/acp-legacy-common.c:392:17: warning: assignment to 'struct acpi_device *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
> 392 | pdm_dev = acpi_find_child_device(ACPI_COMPANION(&pci->dev), pdm_addr, 0);
> | ^
> cc1: some warnings being treated as errors
Fix for this issue is already merged in ASoC tree.
https://lore.kernel.org/all/20231027152403.386257-1-arnd@kernel.org
>
>
> vim +392 sound/soc/amd/acp/acp-legacy-common.c
>
> 354
> 355 int check_acp_pdm(struct pci_dev *pci, struct acp_chip_info *chip)
> 356 {
> 357 struct acpi_device *pdm_dev;
> 358 const union acpi_object *obj;
> 359 u32 pdm_addr, val;
> 360
> 361 val = readl(chip->base + ACP_PIN_CONFIG);
> 362 switch (val) {
> 363 case ACP_CONFIG_4:
> 364 case ACP_CONFIG_5:
> 365 case ACP_CONFIG_6:
> 366 case ACP_CONFIG_7:
> 367 case ACP_CONFIG_8:
> 368 case ACP_CONFIG_10:
> 369 case ACP_CONFIG_11:
> 370 case ACP_CONFIG_12:
> 371 case ACP_CONFIG_13:
> 372 case ACP_CONFIG_14:
> 373 break;
> 374 default:
> 375 return -EINVAL;
> 376 }
> 377
> 378 switch (chip->acp_rev) {
> 379 case ACP3X_DEV:
> 380 pdm_addr = ACP_RENOIR_PDM_ADDR;
> 381 break;
> 382 case ACP6X_DEV:
> 383 pdm_addr = ACP_REMBRANDT_PDM_ADDR;
> 384 break;
> 385 case ACP63_DEV:
> 386 pdm_addr = ACP63_PDM_ADDR;
> 387 break;
> 388 default:
> 389 return -EINVAL;
> 390 }
> 391
> > 392 pdm_dev = acpi_find_child_device(ACPI_COMPANION(&pci->dev), pdm_addr, 0);
> 393 if (pdm_dev) {
> 394 if (!acpi_dev_get_property(pdm_dev, "acp-audio-device-type",
> 395 ACPI_TYPE_INTEGER, &obj) &&
> 396 obj->integer.value == pdm_addr)
> 397 return 0;
> 398 }
> 399 return -ENODEV;
> 400 }
> 401 EXPORT_SYMBOL_NS_GPL(check_acp_pdm, SND_SOC_ACP_COMMON);
> 402
>
prev parent reply other threads:[~2023-11-02 7:14 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-31 15:09 kernel test robot
2023-11-02 7:14 ` syed saba kareem [this message]
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=b969cf18-d326-493c-89ba-bbf9f51b8eb2@amd.com \
--to=ssabakar@amd.com \
--cc=Syed.SabaKareem@amd.com \
--cc=broonie@kernel.org \
--cc=linux-mm@kvack.org \
--cc=lkp@intel.com \
--cc=oe-kbuild-all@lists.linux.dev \
/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