All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Sriram Dash <quic_sriramd@quicinc.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [RFC 2/3] USB: dwc3: qcom: Add support for firmware managed resources
Date: Fri, 8 Mar 2024 08:57:39 +0800	[thread overview]
Message-ID: <202403080837.mI1doJRI-lkp@intel.com> (raw)
In-Reply-To: <1709657858-8563-3-git-send-email-quic_sriramd@quicinc.com>

Hi Sriram,

[This is a private test report for your RFC patch.]
kernel test robot noticed the following build warnings:

[auto build test WARNING on next-20240305]
[cannot apply to robh/for-next usb/usb-testing usb/usb-next usb/usb-linus linus/master v6.8-rc7 v6.8-rc6 v6.8-rc5 v6.8-rc7]
[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/Sriram-Dash/dt-bindings-usb-qcom-dwc3-Add-support-for-multiple-power-domains/20240306-010051
base:   next-20240305
patch link:    https://lore.kernel.org/r/1709657858-8563-3-git-send-email-quic_sriramd%40quicinc.com
patch subject: [RFC 2/3] USB: dwc3: qcom: Add support for firmware managed resources
config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20240308/202403080837.mI1doJRI-lkp@intel.com/config)
compiler: sh4-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240308/202403080837.mI1doJRI-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/202403080837.mI1doJRI-lkp@intel.com/

All warnings (new ones prefixed by >>):

>> drivers/phy/qualcomm/phy-qcom-snps-femto-v2.c:157: warning: Function parameter or struct member 'pd_list' not described in 'qcom_snps_hsphy'
>> drivers/phy/qualcomm/phy-qcom-snps-femto-v2.c:157: warning: Function parameter or struct member 'genpd_core' not described in 'qcom_snps_hsphy'
>> drivers/phy/qualcomm/phy-qcom-snps-femto-v2.c:157: warning: Function parameter or struct member 'genpd_transfer' not described in 'qcom_snps_hsphy'
>> drivers/phy/qualcomm/phy-qcom-snps-femto-v2.c:157: warning: Function parameter or struct member 'fw_managed' not described in 'qcom_snps_hsphy'
>> drivers/phy/qualcomm/phy-qcom-snps-femto-v2.c:157: warning: Function parameter or struct member 'snps_femto_v2_device_ops' not described in 'qcom_snps_hsphy'


vim +157 drivers/phy/qualcomm/phy-qcom-snps-femto-v2.c

   114	
   115	/**
   116	 * struct qcom_snps_hsphy - snps hs phy attributes
   117	 *
   118	 * @dev: device structure
   119	 *
   120	 * @phy: generic phy
   121	 * @base: iomapped memory space for snps hs phy
   122	 *
   123	 * @num_clks: number of clocks
   124	 * @clks: array of clocks
   125	 * @phy_reset: phy reset control
   126	 * @vregs: regulator supplies bulk data
   127	 * @phy_initialized: if PHY has been initialized correctly
   128	 * @mode: contains the current mode the PHY is in
   129	 * @update_seq_cfg: tuning parameters for phy init
   130	 */
   131	struct qcom_snps_hsphy {
   132		struct device *dev;
   133	
   134		struct phy *phy;
   135		void __iomem *base;
   136	
   137		int num_clks;
   138		struct clk_bulk_data *clks;
   139		struct reset_control *phy_reset;
   140		struct regulator_bulk_data vregs[SNPS_HS_NUM_VREGS];
   141	
   142		bool phy_initialized;
   143		enum phy_mode mode;
   144		struct phy_override_seq update_seq_cfg[NUM_HSPHY_TUNING_PARAMS];
   145	
   146		struct dev_pm_domain_list *pd_list;
   147		struct device *genpd_core;
   148		struct device *genpd_transfer;
   149	
   150		bool fw_managed;
   151		/* separate resource management for fw_managed vs locally managed devices */
   152		struct snps_femto_v2_device_ops {
   153			int (*resume_resource)(struct qcom_snps_hsphy *hsphy);
   154			int (*suspend_resource)(struct qcom_snps_hsphy *hsphy);
   155		} snps_femto_v2_device_ops;
   156	
 > 157	};
   158	

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

  parent reply	other threads:[~2024-03-08  1:00 UTC|newest]

Thread overview: 66+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-05 16:57 [RFC 0/3] Enable firmware-managed USB resources on Qcom targets Sriram Dash
2024-03-05 16:57 ` Sriram Dash
2024-03-05 16:57 ` [RFC 1/3] dt-bindings: usb: qcom,dwc3: Add support for multiple power-domains Sriram Dash
2024-03-05 16:57   ` Sriram Dash
2024-03-05 17:07   ` Krzysztof Kozlowski
2024-03-05 17:07     ` Krzysztof Kozlowski
2024-03-05 18:03     ` Sriram Dash
2024-03-05 18:03       ` Sriram Dash
2024-03-06  7:03       ` Krzysztof Kozlowski
2024-03-06  7:03         ` Krzysztof Kozlowski
2024-03-06  7:33         ` Krishna Kurapati PSSNV
2024-03-06  7:33           ` Krishna Kurapati PSSNV
2024-03-06 15:49           ` Sriram Dash
2024-03-06 15:49             ` Sriram Dash
2024-03-05 19:03   ` Dmitry Baryshkov
2024-03-05 19:03     ` Dmitry Baryshkov
2024-03-06 15:51     ` Sriram Dash
2024-03-06 15:51       ` Sriram Dash
2024-03-06 19:51       ` Dmitry Baryshkov
2024-03-06 19:51         ` Dmitry Baryshkov
2024-03-05 16:57 ` [RFC 2/3] USB: dwc3: qcom: Add support for firmware managed resources Sriram Dash
2024-03-05 16:57   ` Sriram Dash
2024-03-05 19:22   ` Bjorn Andersson
2024-03-05 19:22     ` Bjorn Andersson
2024-03-06 16:21     ` Sriram Dash
2024-03-06 16:21       ` Sriram Dash
2024-03-06  8:45   ` Dmitry Baryshkov
2024-03-06  8:45     ` Dmitry Baryshkov
2024-03-06 16:52     ` Sriram Dash
2024-03-06 16:52       ` Sriram Dash
2024-03-06 19:05       ` Dmitry Baryshkov
2024-03-06 19:05         ` Dmitry Baryshkov
2024-03-08  0:57   ` kernel test robot [this message]
2024-03-05 16:57 ` [RFC 3/3] arm64: dts: qcom: sa8775p-ride: Enable " Sriram Dash
2024-03-05 16:57   ` Sriram Dash
2024-03-05 17:08   ` Krzysztof Kozlowski
2024-03-05 17:08     ` Krzysztof Kozlowski
2024-03-05 18:03     ` Sriram Dash
2024-03-05 18:03       ` Sriram Dash
2024-03-05 18:25       ` Sriram Dash
2024-03-05 18:25         ` Sriram Dash
2024-03-05 21:07         ` Konrad Dybcio
2024-03-05 21:07           ` Konrad Dybcio
2024-03-06 16:03           ` Sriram Dash
2024-03-06 16:03             ` Sriram Dash
2024-03-05 18:47       ` Bjorn Andersson
2024-03-05 18:47         ` Bjorn Andersson
2024-03-06 15:54         ` Sriram Dash
2024-03-06 15:54           ` Sriram Dash
2024-03-08  6:28   ` kernel test robot
2024-03-05 17:12 ` [RFC 0/3] Enable firmware-managed USB resources on Qcom targets Krzysztof Kozlowski
2024-03-05 17:12   ` Krzysztof Kozlowski
2024-03-05 18:04   ` Sriram Dash
2024-03-05 18:04     ` Sriram Dash
2024-03-06  7:04     ` Krzysztof Kozlowski
2024-03-06  7:04       ` Krzysztof Kozlowski
2024-03-06 16:00       ` Sriram Dash
2024-03-06 16:00         ` Sriram Dash
2024-03-05 21:09 ` Konrad Dybcio
2024-03-05 21:09   ` Konrad Dybcio
2024-03-06 16:03   ` Sriram Dash
2024-03-06 16:03     ` Sriram Dash
2024-03-12 15:56 ` Trilok Soni
2024-03-12 15:56   ` Trilok Soni
2024-03-19 15:38 ` Sudeep Holla
2024-03-19 15:38   ` Sudeep Holla

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=202403080837.mI1doJRI-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=quic_sriramd@quicinc.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.