[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <202408242341.lywV11DL-lkp@intel.com>
Date: Sun, 25 Aug 2024 02:06:59 +0800
From: kernel test robot <lkp@...el.com>
To: Shashank Babu Chinta Venkata <quic_schintav@...cinc.com>,
agross@...nel.org, andersson@...nel.org, konrad.dybcio@...aro.org,
mani@...nel.org
Cc: oe-kbuild-all@...ts.linux.dev, quic_msarkar@...cinc.com,
quic_kraravin@...cinc.com,
Lorenzo Pieralisi <lpieralisi@...nel.org>,
Krzysztof WilczyĆski <kw@...ux.com>,
Manivannan Sadhasivam <manivannan.sadhasivam@...aro.org>,
Rob Herring <robh@...nel.org>, Bjorn Helgaas <helgaas@...nel.org>,
Jingoo Han <jingoohan1@...il.com>,
Yoshihiro Shimoda <yoshihiro.shimoda.uh@...esas.com>,
Serge Semin <fancer.lancer@...il.com>,
Niklas Cassel <cassel@...nel.org>,
Conor Dooley <conor.dooley@...rochip.com>,
linux-kernel@...r.kernel.org, linux-pci@...r.kernel.org,
linux-arm-msm@...r.kernel.org
Subject: Re: [PATCH v5 1/3] PCI: qcom: Refactor common code
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: i386-allmodconfig (https://download.01.org/0day-ci/archive/20240824/202408242341.lywV11DL-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240824/202408242341.lywV11DL-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@...el.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202408242341.lywV11DL-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/pci/controller/dwc/pcie-qcom-ep.c: In function 'qcom_pcie_enable_resources':
>> drivers/pci/controller/dwc/pcie-qcom-ep.c:321:15: error: too few arguments to function 'qcom_pcie_common_icc_init'
321 | ret = qcom_pcie_common_icc_init(pci, pcie_ep->icc_mem);
| ^~~~~~~~~~~~~~~~~~~~~~~~~
In file included from drivers/pci/controller/dwc/pcie-qcom-ep.c:28:
drivers/pci/controller/dwc/pcie-qcom-common.h:14:5: note: declared here
14 | int qcom_pcie_common_icc_init(struct dw_pcie *pci, struct icc_path *icc_mem, u32 bandwidth);
| ^~~~~~~~~~~~~~~~~~~~~~~~~
vim +/qcom_pcie_common_icc_init +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
Powered by blists - more mailing lists