Hi Shashank, kernel test robot noticed the following build errors: [auto build test ERROR on pci/next] [also build test ERROR on linus/master v6.11-rc4] [cannot apply to pci/for-linus next-20240823] [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/Shashank-Babu-Chinta-Venkata/PCI-qcom-Refactor-common-code/20240822-011229 base: https://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git next patch link: https://lore.kernel.org/r/20240821170917.21018-2-quic_schintav%40quicinc.com patch subject: [PATCH v5 1/3] PCI: qcom: Refactor common code config: x86_64-allyesconfig (https://download.01.org/0day-ci/archive/20240824/202408242300.2ECtncwN-lkp@xxxxxxxxx/config) compiler: clang version 18.1.5 (https://github.com/llvm/llvm-project 617a15a9eac96088ae5e9134248d8236e34b91b1) reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240824/202408242300.2ECtncwN-lkp@xxxxxxxxx/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@xxxxxxxxx> | Closes: https://lore.kernel.org/oe-kbuild-all/202408242300.2ECtncwN-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): >> drivers/pci/controller/dwc/pcie-qcom-ep.c:321:55: error: too few arguments to function call, expected 3, have 2 321 | ret = qcom_pcie_common_icc_init(pci, pcie_ep->icc_mem); | ~~~~~~~~~~~~~~~~~~~~~~~~~ ^ drivers/pci/controller/dwc/pcie-qcom-common.h:14:5: note: 'qcom_pcie_common_icc_init' declared here 14 | int qcom_pcie_common_icc_init(struct dw_pcie *pci, struct icc_path *icc_mem, u32 bandwidth); | ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 error generated. vim +321 drivers/pci/controller/dwc/pcie-qcom-ep.c 295 296 static int qcom_pcie_enable_resources(struct qcom_pcie_ep *pcie_ep) 297 { 298 struct dw_pcie *pci = &pcie_ep->pci; 299 int ret; 300 301 ret = clk_bulk_prepare_enable(pcie_ep->num_clks, pcie_ep->clks); 302 if (ret) 303 return ret; 304 305 ret = qcom_pcie_ep_core_reset(pcie_ep); 306 if (ret) 307 goto err_disable_clk; 308 309 ret = phy_init(pcie_ep->phy); 310 if (ret) 311 goto err_disable_clk; 312 313 ret = phy_set_mode_ext(pcie_ep->phy, PHY_MODE_PCIE, PHY_MODE_PCIE_EP); 314 if (ret) 315 goto err_phy_exit; 316 317 ret = phy_power_on(pcie_ep->phy); 318 if (ret) 319 goto err_phy_exit; 320 > 321 ret = qcom_pcie_common_icc_init(pci, pcie_ep->icc_mem); 322 if (ret) { 323 dev_err(pci->dev, "failed to set interconnect bandwidth: %d\n", 324 ret); 325 goto err_phy_off; 326 } 327 328 return 0; 329 330 err_phy_off: 331 phy_power_off(pcie_ep->phy); 332 err_phy_exit: 333 phy_exit(pcie_ep->phy); 334 err_disable_clk: 335 clk_bulk_disable_unprepare(pcie_ep->num_clks, pcie_ep->clks); 336 337 return ret; 338 } 339 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki