Hi Vijendar,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on broonie-sound/for-next] [also build test WARNING on linus/master next-20221220] [cannot apply to v6.1] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Vijendar-Mukunda/ASoC-amd-ps-... base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next patch link: https://lore.kernel.org/r/20221221112611.1373278-1-Vijendar.Mukunda%40amd.co... patch subject: [PATCH V2 1/4] ASoC: amd: ps: implement api to retrieve acp device config config: i386-allyesconfig compiler: gcc-11 (Debian 11.3.0-8) 11.3.0 reproduce (this is a W=1 build): # https://github.com/intel-lab-lkp/linux/commit/a47d6a455ff7716688a8c7efaae89f... git remote add linux-review https://github.com/intel-lab-lkp/linux git fetch --no-tags linux-review Vijendar-Mukunda/ASoC-amd-ps-implement-api-to-retrieve-acp-device-config/20221221-192703 git checkout a47d6a455ff7716688a8c7efaae89f07cebf118d # save the config file mkdir build_dir && cp config build_dir/.config make W=1 O=build_dir ARCH=i386 olddefconfig make W=1 O=build_dir ARCH=i386 SHELL=/bin/bash sound/soc/amd/ps/
If you fix the issue, kindly add following tag where applicable | Reported-by: kernel test robot lkp@intel.com
All warnings (new ones prefixed by >>):
sound/soc/amd/ps/pci-ps.c:135:6: warning: no previous prototype for 'get_acp63_device_config' [-Wmissing-prototypes]
135 | void get_acp63_device_config(u32 config, struct pci_dev *pci, struct acp63_dev_data *acp_data) | ^~~~~~~~~~~~~~~~~~~~~~~ sound/soc/amd/ps/pci-ps.c: In function 'snd_acp63_probe': sound/soc/amd/ps/pci-ps.c:231:74: error: 'ACP_DMIC_ADDR' undeclared (first use in this function); did you mean 'ACP63_DMIC_ADDR'? 231 | adev = acpi_find_child_device(ACPI_COMPANION(&pci->dev), ACP_DMIC_ADDR, 0); | ^~~~~~~~~~~~~ | ACP63_DMIC_ADDR sound/soc/amd/ps/pci-ps.c:231:74: note: each undeclared identifier is reported only once for each function it appears in
vim +/get_acp63_device_config +135 sound/soc/amd/ps/pci-ps.c
134
135 void get_acp63_device_config(u32 config, struct pci_dev *pci, struct acp63_dev_data *acp_data)
136 { 137 struct acpi_device *dmic_dev; 138 const union acpi_object *obj; 139 bool is_dmic_dev = false; 140 141 dmic_dev = acpi_find_child_device(ACPI_COMPANION(&pci->dev), ACP63_DMIC_ADDR, 0); 142 if (dmic_dev) { 143 if (!acpi_dev_get_property(dmic_dev, "acp-audio-device-type", 144 ACPI_TYPE_INTEGER, &obj) && 145 obj->integer.value == ACP_DMIC_DEV) 146 is_dmic_dev = true; 147 } 148 149 switch (config) { 150 case ACP_CONFIG_0: 151 case ACP_CONFIG_1: 152 case ACP_CONFIG_2: 153 case ACP_CONFIG_3: 154 case ACP_CONFIG_9: 155 case ACP_CONFIG_15: 156 dev_dbg(&pci->dev, "Audio Mode %d\n", config); 157 break; 158 default: 159 if (is_dmic_dev) { 160 acp_data->pdev_mask = ACP63_PDM_DEV_MASK; 161 acp_data->pdev_count = ACP63_PDM_MODE_DEVS; 162 } 163 break; 164 } 165 } 166