linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [linux-next:master 4330/4460] DockBook: drivers/rapidio/rio.c:568: warning: No description found for parameter 'mport'
@ 2016-02-10 11:06 kbuild test robot
  0 siblings, 0 replies; only message in thread
From: kbuild test robot @ 2016-02-10 11:06 UTC (permalink / raw)
  To: Alexandre Bounine; +Cc: kbuild-all, Andrew Morton, Linux Memory Management List

[-- Attachment #1: Type: text/plain, Size: 1948 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   b613c2bfa3e843fdeff95878edc7326b763abd1b
commit: 6d643d52a9d10ccf67d6990ff28c9042ab68f473 [4330/4460] rapidio: move rio_pw_enable into core code
reproduce: make htmldocs

All warnings (new ones prefixed by >>):

>> drivers/rapidio/rio.c:568: warning: No description found for parameter 'mport'
>> drivers/rapidio/rio.c:568: warning: Excess function parameter 'port' description in 'rio_pw_enable'
   include/linux/rio.h:301: warning: No description found for parameter 'lock'
   include/linux/rio.h:301: warning: Excess struct/union/enum/typedef member 'mutex' description in 'rio_mport'
   include/linux/rio.h:334: warning: No description found for parameter 'dev'
>> drivers/rapidio/rio.c:568: warning: No description found for parameter 'mport'
>> drivers/rapidio/rio.c:568: warning: Excess function parameter 'port' description in 'rio_pw_enable'

vim +/mport +568 drivers/rapidio/rio.c

   552		if (rdev->pwcback) {
   553			rdev->pwcback = NULL;
   554			rc = 0;
   555		}
   556	
   557		spin_unlock(&rio_global_list_lock);
   558		return rc;
   559	}
   560	EXPORT_SYMBOL_GPL(rio_release_inb_pwrite);
   561	
   562	/**
   563	 * rio_pw_enable - Enables/disables port-write handling by a master port
   564	 * @port: Master port associated with port-write handling
   565	 * @enable:  1=enable,  0=disable
   566	 */
   567	void rio_pw_enable(struct rio_mport *mport, int enable)
 > 568	{
   569		if (mport->ops->pwenable) {
   570			mutex_lock(&mport->lock);
   571	
   572			if ((enable && ++mport->pwe_refcnt == 1) ||
   573			    (!enable && mport->pwe_refcnt && --mport->pwe_refcnt == 0))
   574				mport->ops->pwenable(mport, enable);
   575			mutex_unlock(&mport->lock);
   576		}

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 6276 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-02-10 11:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-10 11:06 [linux-next:master 4330/4460] DockBook: drivers/rapidio/rio.c:568: warning: No description found for parameter 'mport' kbuild test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox