public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Shivnandan Kumar <quic_kshivnan@quicinc.com>,
	Sibi Sankar <quic_sibis@quicinc.com>,
	Jassi Brar <jassisinghbrar@gmail.com>,
	Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	cros-qcom-dts-watchers@chromium.org,
	Bjorn Andersson <andersson@kernel.org>,
	Konrad Dybcio <konradybcio@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev, linux-arm-msm@vger.kernel.org,
	linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
	Ramakrishna Gottimukkula <quic_rgottimu@quicinc.com>,
	Shivnandan Kumar <quic_kshivnan@quicinc.com>
Subject: Re: [PATCH 2/3] mailbox: qcom-cpucp-mbox: Add support for SC7280 CPUCP mailbox controller
Date: Tue, 24 Sep 2024 23:27:17 +0800	[thread overview]
Message-ID: <202409242349.yXq4CDaH-lkp@intel.com> (raw)
In-Reply-To: <20240924050941.1251485-3-quic_kshivnan@quicinc.com>

Hi Shivnandan,

kernel test robot noticed the following build warnings:

[auto build test WARNING on robh/for-next]
[also build test WARNING on linus/master v6.11 next-20240924]
[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/Shivnandan-Kumar/dt-bindings-mailbox-qcom-cpucp-mbox-Add-sc7280-cpucp-mailbox-instance/20240924-133657
base:   https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
patch link:    https://lore.kernel.org/r/20240924050941.1251485-3-quic_kshivnan%40quicinc.com
patch subject: [PATCH 2/3] mailbox: qcom-cpucp-mbox: Add support for SC7280 CPUCP mailbox controller
config: alpha-allyesconfig (https://download.01.org/0day-ci/archive/20240924/202409242349.yXq4CDaH-lkp@intel.com/config)
compiler: alpha-linux-gcc (GCC) 13.3.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240924/202409242349.yXq4CDaH-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/202409242349.yXq4CDaH-lkp@intel.com/

All warnings (new ones prefixed by >>):

>> drivers/mailbox/qcom-cpucp-mbox.c:48: warning: Function parameter or struct member 'desc' not described in 'qcom_cpucp_mbox'


vim +48 drivers/mailbox/qcom-cpucp-mbox.c

0e2a9a03106cd5 Sibi Sankar      2024-06-12  34  
0e2a9a03106cd5 Sibi Sankar      2024-06-12  35  /**
0e2a9a03106cd5 Sibi Sankar      2024-06-12  36   * struct qcom_cpucp_mbox - Holder for the mailbox driver
0e2a9a03106cd5 Sibi Sankar      2024-06-12  37   * @chans:			The mailbox channel
0e2a9a03106cd5 Sibi Sankar      2024-06-12  38   * @mbox:			The mailbox controller
0e2a9a03106cd5 Sibi Sankar      2024-06-12  39   * @tx_base:			Base address of the CPUCP tx registers
0e2a9a03106cd5 Sibi Sankar      2024-06-12  40   * @rx_base:			Base address of the CPUCP rx registers
0e2a9a03106cd5 Sibi Sankar      2024-06-12  41   */
0e2a9a03106cd5 Sibi Sankar      2024-06-12  42  struct qcom_cpucp_mbox {
0e2a9a03106cd5 Sibi Sankar      2024-06-12  43  	struct mbox_chan chans[APSS_CPUCP_IPC_CHAN_SUPPORTED];
654ed3904f995a Shivnandan Kumar 2024-09-24  44  	const struct qcom_cpucp_mbox_desc *desc;
0e2a9a03106cd5 Sibi Sankar      2024-06-12  45  	struct mbox_controller mbox;
0e2a9a03106cd5 Sibi Sankar      2024-06-12  46  	void __iomem *tx_base;
0e2a9a03106cd5 Sibi Sankar      2024-06-12  47  	void __iomem *rx_base;
0e2a9a03106cd5 Sibi Sankar      2024-06-12 @48  };
0e2a9a03106cd5 Sibi Sankar      2024-06-12  49  

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

  parent reply	other threads:[~2024-09-24 15:27 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-24  5:09 [PATCH 0/3] qcom: sc7280: Enable cpucp mbox Shivnandan Kumar
2024-09-24  5:09 ` [PATCH 1/3] dt-bindings: mailbox: qcom,cpucp-mbox: Add sc7280 cpucp mailbox instance Shivnandan Kumar
2024-09-24 23:25   ` Rob Herring
2024-10-03  5:43     ` Shivnandan Kumar
2024-10-06 17:11       ` Dmitry Baryshkov
2024-10-17  5:18         ` Shivnandan Kumar
2024-10-18 10:51           ` Dmitry Baryshkov
2024-09-25 14:23   ` Krzysztof Kozlowski
2024-10-03  5:42     ` Shivnandan Kumar
2024-09-24  5:09 ` [PATCH 2/3] mailbox: qcom-cpucp-mbox: Add support for SC7280 CPUCP mailbox controller Shivnandan Kumar
2024-09-24  6:44   ` Dmitry Baryshkov
2024-10-03  5:42     ` Shivnandan Kumar
2024-09-24 15:27   ` kernel test robot [this message]
2024-10-06  2:33   ` Bjorn Andersson
2024-10-17 11:52     ` Shivnandan Kumar
2024-10-18 14:44       ` Bjorn Andersson
2024-10-17 21:15   ` Konrad Dybcio
2024-09-24  5:09 ` [PATCH 3/3] arm64: dts: qcom: sc7280: Add cpucp mbox node Shivnandan Kumar
2024-09-25 14:22   ` Krzysztof Kozlowski
2024-10-03  5:41     ` Shivnandan Kumar
2024-10-06  2:35   ` Bjorn Andersson
2024-10-17 11:51     ` Shivnandan Kumar
2024-10-17 21:13       ` Konrad Dybcio

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=202409242349.yXq4CDaH-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=andersson@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=cros-qcom-dts-watchers@chromium.org \
    --cc=devicetree@vger.kernel.org \
    --cc=jassisinghbrar@gmail.com \
    --cc=konradybcio@kernel.org \
    --cc=krzk@kernel.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=quic_kshivnan@quicinc.com \
    --cc=quic_rgottimu@quicinc.com \
    --cc=quic_sibis@quicinc.com \
    --cc=robh@kernel.org \
    /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