Linux Media Controller development
 help / color / mirror / Atom feed
* Re: [PATCH v4 27/27] scripts: kernel-doc: validate kernel-doc markup with the actual names
       [not found] <7b013fef4b0a45bddc5f1a5593a282baceb13b0c.1605521731.git.mchehab+huawei@kernel.org>
@ 2020-11-16 15:06 ` kernel test robot
  2020-11-16 15:42 ` kernel test robot
  2020-11-16 15:51 ` kernel test robot
  2 siblings, 0 replies; 3+ messages in thread
From: kernel test robot @ 2020-11-16 15:06 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Jonathan Corbet
  Cc: kbuild-all, linux-media, Mauro Carvalho Chehab,
	Linux Doc Mailing List, linux-kernel

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

Hi Mauro,

I love your patch! Perhaps something to improve:

[auto build test WARNING on next-20201116]
[cannot apply to drm-intel/for-linux-next s390/features tip/timers/core tip/irq/core tip/sched/core linus/master hnaz-linux-mm/master v5.10-rc4 v5.10-rc3 v5.10-rc2 v5.10-rc4]
[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]

url:    https://github.com/0day-ci/linux/commits/Mauro-Carvalho-Chehab/net-phy-fix-kernel-doc-markups/20201116-191847
base:    034307507118f7e1b18f8403c85af2216da2dc94
config: nios2-randconfig-r022-20201116 (attached as .config)
compiler: nios2-linux-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/0day-ci/linux/commit/11cd9cdaab434fff7a5edbee8d8d4ce9ef11acf4
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Mauro-Carvalho-Chehab/net-phy-fix-kernel-doc-markups/20201116-191847
        git checkout 11cd9cdaab434fff7a5edbee8d8d4ce9ef11acf4
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=nios2 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

>> net/batman-adv/multicast.c:840: warning: expecting prototype for batadv_mcast_flags_logs(). Prototype was for batadv_mcast_flags_log() instead

vim +840 net/batman-adv/multicast.c

72f7b2deafde895 Linus Lüssing  2016-05-10  830  
72f7b2deafde895 Linus Lüssing  2016-05-10  831  /**
7e9a8c2ce7c5f87 Sven Eckelmann 2017-12-02  832   * batadv_mcast_flags_logs() - output debug information about mcast flag changes
72f7b2deafde895 Linus Lüssing  2016-05-10  833   * @bat_priv: the bat priv with all the soft interface information
6bc4544021f8228 Linus Lüssing  2019-05-07  834   * @flags: TVLV flags indicating the new multicast state
72f7b2deafde895 Linus Lüssing  2016-05-10  835   *
bccb48c89fe3c09 Sven Eckelmann 2020-06-01  836   * Whenever the multicast TVLV flags this node announces change, this function
bccb48c89fe3c09 Sven Eckelmann 2020-06-01  837   * should be used to notify userspace about the change.
72f7b2deafde895 Linus Lüssing  2016-05-10  838   */
72f7b2deafde895 Linus Lüssing  2016-05-10  839  static void batadv_mcast_flags_log(struct batadv_priv *bat_priv, u8 flags)
72f7b2deafde895 Linus Lüssing  2016-05-10 @840  {
6bc4544021f8228 Linus Lüssing  2019-05-07  841  	bool old_enabled = bat_priv->mcast.mla_flags.enabled;
6bc4544021f8228 Linus Lüssing  2019-05-07  842  	u8 old_flags = bat_priv->mcast.mla_flags.tvlv_flags;
61caf3d109f5411 Linus Lüssing  2019-06-11  843  	char str_old_flags[] = "[.... . ]";
72f7b2deafde895 Linus Lüssing  2016-05-10  844  
61caf3d109f5411 Linus Lüssing  2019-06-11  845  	sprintf(str_old_flags, "[%c%c%c%s%s]",
72f7b2deafde895 Linus Lüssing  2016-05-10  846  		(old_flags & BATADV_MCAST_WANT_ALL_UNSNOOPABLES) ? 'U' : '.',
72f7b2deafde895 Linus Lüssing  2016-05-10  847  		(old_flags & BATADV_MCAST_WANT_ALL_IPV4) ? '4' : '.',
61caf3d109f5411 Linus Lüssing  2019-06-11  848  		(old_flags & BATADV_MCAST_WANT_ALL_IPV6) ? '6' : '.',
61caf3d109f5411 Linus Lüssing  2019-06-11  849  		!(old_flags & BATADV_MCAST_WANT_NO_RTR4) ? "R4" : ". ",
61caf3d109f5411 Linus Lüssing  2019-06-11  850  		!(old_flags & BATADV_MCAST_WANT_NO_RTR6) ? "R6" : ". ");
72f7b2deafde895 Linus Lüssing  2016-05-10  851  
72f7b2deafde895 Linus Lüssing  2016-05-10  852  	batadv_dbg(BATADV_DBG_MCAST, bat_priv,
61caf3d109f5411 Linus Lüssing  2019-06-11  853  		   "Changing multicast flags from '%s' to '[%c%c%c%s%s]'\n",
6bc4544021f8228 Linus Lüssing  2019-05-07  854  		   old_enabled ? str_old_flags : "<undefined>",
72f7b2deafde895 Linus Lüssing  2016-05-10  855  		   (flags & BATADV_MCAST_WANT_ALL_UNSNOOPABLES) ? 'U' : '.',
72f7b2deafde895 Linus Lüssing  2016-05-10  856  		   (flags & BATADV_MCAST_WANT_ALL_IPV4) ? '4' : '.',
61caf3d109f5411 Linus Lüssing  2019-06-11  857  		   (flags & BATADV_MCAST_WANT_ALL_IPV6) ? '6' : '.',
61caf3d109f5411 Linus Lüssing  2019-06-11  858  		   !(flags & BATADV_MCAST_WANT_NO_RTR4) ? "R4" : ". ",
61caf3d109f5411 Linus Lüssing  2019-06-11  859  		   !(flags & BATADV_MCAST_WANT_NO_RTR6) ? "R6" : ". ");
72f7b2deafde895 Linus Lüssing  2016-05-10  860  }
72f7b2deafde895 Linus Lüssing  2016-05-10  861  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 21051 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v4 27/27] scripts: kernel-doc: validate kernel-doc markup with the actual names
       [not found] <7b013fef4b0a45bddc5f1a5593a282baceb13b0c.1605521731.git.mchehab+huawei@kernel.org>
  2020-11-16 15:06 ` [PATCH v4 27/27] scripts: kernel-doc: validate kernel-doc markup with the actual names kernel test robot
@ 2020-11-16 15:42 ` kernel test robot
  2020-11-16 15:51 ` kernel test robot
  2 siblings, 0 replies; 3+ messages in thread
From: kernel test robot @ 2020-11-16 15:42 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Jonathan Corbet
  Cc: kbuild-all, clang-built-linux, linux-media, Mauro Carvalho Chehab,
	Linux Doc Mailing List, linux-kernel

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

Hi Mauro,

I love your patch! Perhaps something to improve:

[auto build test WARNING on next-20201116]
[cannot apply to drm-intel/for-linux-next s390/features tip/timers/core tip/irq/core tip/sched/core linus/master hnaz-linux-mm/master v5.10-rc4 v5.10-rc3 v5.10-rc2 v5.10-rc4]
[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]

url:    https://github.com/0day-ci/linux/commits/Mauro-Carvalho-Chehab/net-phy-fix-kernel-doc-markups/20201116-191847
base:    034307507118f7e1b18f8403c85af2216da2dc94
config: arm-randconfig-r006-20201116 (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project c044709b8fbea2a9a375e4173a6bd735f6866c0c)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # install arm cross compiling tool for clang build
        # apt-get install binutils-arm-linux-gnueabi
        # https://github.com/0day-ci/linux/commit/11cd9cdaab434fff7a5edbee8d8d4ce9ef11acf4
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Mauro-Carvalho-Chehab/net-phy-fix-kernel-doc-markups/20201116-191847
        git checkout 11cd9cdaab434fff7a5edbee8d8d4ce9ef11acf4
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=arm 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

   arch/arm/common/locomo.c:369: warning: Function parameter or member 'me' not described in '__locomo_probe'
   arch/arm/common/locomo.c:369: warning: Function parameter or member 'mem' not described in '__locomo_probe'
   arch/arm/common/locomo.c:369: warning: Function parameter or member 'irq' not described in '__locomo_probe'
>> arch/arm/common/locomo.c:369: warning: expecting prototype for locomo_probe(). Prototype was for __locomo_probe() instead

vim +369 arch/arm/common/locomo.c

b38d950d3aedf90 John Lenz         2005-09-08  353  
4ebf2d00260bac5 Pavel Machek      2006-03-15  354  
^1da177e4c3f415 Linus Torvalds    2005-04-16  355  /**
^1da177e4c3f415 Linus Torvalds    2005-04-16  356   *	locomo_probe - probe for a single LoCoMo chip.
^1da177e4c3f415 Linus Torvalds    2005-04-16  357   *	@phys_addr: physical address of device.
^1da177e4c3f415 Linus Torvalds    2005-04-16  358   *
^1da177e4c3f415 Linus Torvalds    2005-04-16  359   *	Probe for a LoCoMo chip.  This must be called
^1da177e4c3f415 Linus Torvalds    2005-04-16  360   *	before any other locomo-specific code.
^1da177e4c3f415 Linus Torvalds    2005-04-16  361   *
^1da177e4c3f415 Linus Torvalds    2005-04-16  362   *	Returns:
^1da177e4c3f415 Linus Torvalds    2005-04-16  363   *	%-ENODEV	device not found.
^1da177e4c3f415 Linus Torvalds    2005-04-16  364   *	%-EBUSY		physical address already marked in-use.
^1da177e4c3f415 Linus Torvalds    2005-04-16  365   *	%0		successful.
^1da177e4c3f415 Linus Torvalds    2005-04-16  366   */
^1da177e4c3f415 Linus Torvalds    2005-04-16  367  static int
^1da177e4c3f415 Linus Torvalds    2005-04-16  368  __locomo_probe(struct device *me, struct resource *mem, int irq)
^1da177e4c3f415 Linus Torvalds    2005-04-16 @369  {
ac609d266e4af4e Eric Miao         2010-02-04  370  	struct locomo_platform_data *pdata = me->platform_data;
^1da177e4c3f415 Linus Torvalds    2005-04-16  371  	struct locomo *lchip;
^1da177e4c3f415 Linus Torvalds    2005-04-16  372  	unsigned long r;
^1da177e4c3f415 Linus Torvalds    2005-04-16  373  	int i, ret = -ENODEV;
^1da177e4c3f415 Linus Torvalds    2005-04-16  374  
d2a02b93cf78205 Russell King      2006-03-20  375  	lchip = kzalloc(sizeof(struct locomo), GFP_KERNEL);
^1da177e4c3f415 Linus Torvalds    2005-04-16  376  	if (!lchip)
^1da177e4c3f415 Linus Torvalds    2005-04-16  377  		return -ENOMEM;
^1da177e4c3f415 Linus Torvalds    2005-04-16  378  
^1da177e4c3f415 Linus Torvalds    2005-04-16  379  	spin_lock_init(&lchip->lock);
^1da177e4c3f415 Linus Torvalds    2005-04-16  380  
^1da177e4c3f415 Linus Torvalds    2005-04-16  381  	lchip->dev = me;
^1da177e4c3f415 Linus Torvalds    2005-04-16  382  	dev_set_drvdata(lchip->dev, lchip);
^1da177e4c3f415 Linus Torvalds    2005-04-16  383  
^1da177e4c3f415 Linus Torvalds    2005-04-16  384  	lchip->phys = mem->start;
^1da177e4c3f415 Linus Torvalds    2005-04-16  385  	lchip->irq = irq;
ac609d266e4af4e Eric Miao         2010-02-04  386  	lchip->irq_base = (pdata) ? pdata->irq_base : NO_IRQ;
^1da177e4c3f415 Linus Torvalds    2005-04-16  387  
^1da177e4c3f415 Linus Torvalds    2005-04-16  388  	/*
^1da177e4c3f415 Linus Torvalds    2005-04-16  389  	 * Map the whole region.  This also maps the
^1da177e4c3f415 Linus Torvalds    2005-04-16  390  	 * registers for our children.
^1da177e4c3f415 Linus Torvalds    2005-04-16  391  	 */
^1da177e4c3f415 Linus Torvalds    2005-04-16  392  	lchip->base = ioremap(mem->start, PAGE_SIZE);
^1da177e4c3f415 Linus Torvalds    2005-04-16  393  	if (!lchip->base) {
^1da177e4c3f415 Linus Torvalds    2005-04-16  394  		ret = -ENOMEM;
^1da177e4c3f415 Linus Torvalds    2005-04-16  395  		goto out;
^1da177e4c3f415 Linus Torvalds    2005-04-16  396  	}
^1da177e4c3f415 Linus Torvalds    2005-04-16  397  
^1da177e4c3f415 Linus Torvalds    2005-04-16  398  	/* locomo initialize */
^1da177e4c3f415 Linus Torvalds    2005-04-16  399  	locomo_writel(0, lchip->base + LOCOMO_ICR);
^1da177e4c3f415 Linus Torvalds    2005-04-16  400  	/* KEYBOARD */
^1da177e4c3f415 Linus Torvalds    2005-04-16  401  	locomo_writel(0, lchip->base + LOCOMO_KEYBOARD + LOCOMO_KIC);
^1da177e4c3f415 Linus Torvalds    2005-04-16  402  
^1da177e4c3f415 Linus Torvalds    2005-04-16  403  	/* GPIO */
^1da177e4c3f415 Linus Torvalds    2005-04-16  404  	locomo_writel(0, lchip->base + LOCOMO_GPO);
2a52efb2cecf782 Thomas Kunze      2008-04-29  405  	locomo_writel((LOCOMO_GPIO(1) | LOCOMO_GPIO(2) | LOCOMO_GPIO(13) | LOCOMO_GPIO(14))
^1da177e4c3f415 Linus Torvalds    2005-04-16  406  			, lchip->base + LOCOMO_GPE);
2a52efb2cecf782 Thomas Kunze      2008-04-29  407  	locomo_writel((LOCOMO_GPIO(1) | LOCOMO_GPIO(2) | LOCOMO_GPIO(13) | LOCOMO_GPIO(14))
^1da177e4c3f415 Linus Torvalds    2005-04-16  408  			, lchip->base + LOCOMO_GPD);
^1da177e4c3f415 Linus Torvalds    2005-04-16  409  	locomo_writel(0, lchip->base + LOCOMO_GIE);
^1da177e4c3f415 Linus Torvalds    2005-04-16  410  
e44237818500257 Richard Purdie    2006-06-26  411  	/* Frontlight */
^1da177e4c3f415 Linus Torvalds    2005-04-16  412  	locomo_writel(0, lchip->base + LOCOMO_FRONTLIGHT + LOCOMO_ALS);
^1da177e4c3f415 Linus Torvalds    2005-04-16  413  	locomo_writel(0, lchip->base + LOCOMO_FRONTLIGHT + LOCOMO_ALD);
4ebf2d00260bac5 Pavel Machek      2006-03-15  414  
^1da177e4c3f415 Linus Torvalds    2005-04-16  415  	/* Longtime timer */
^1da177e4c3f415 Linus Torvalds    2005-04-16  416  	locomo_writel(0, lchip->base + LOCOMO_LTINT);
^1da177e4c3f415 Linus Torvalds    2005-04-16  417  	/* SPI */
1b0d76cb9d5a655 H Hartley Sweeten 2010-03-22  418  	locomo_writel(0, lchip->base + LOCOMO_SPI + LOCOMO_SPIIE);
^1da177e4c3f415 Linus Torvalds    2005-04-16  419  
^1da177e4c3f415 Linus Torvalds    2005-04-16  420  	locomo_writel(6 + 8 + 320 + 30 - 10, lchip->base + LOCOMO_ASD);
^1da177e4c3f415 Linus Torvalds    2005-04-16  421  	r = locomo_readl(lchip->base + LOCOMO_ASD);
^1da177e4c3f415 Linus Torvalds    2005-04-16  422  	r |= 0x8000;
^1da177e4c3f415 Linus Torvalds    2005-04-16  423  	locomo_writel(r, lchip->base + LOCOMO_ASD);
^1da177e4c3f415 Linus Torvalds    2005-04-16  424  
^1da177e4c3f415 Linus Torvalds    2005-04-16  425  	locomo_writel(6 + 8 + 320 + 30 - 10 - 128 + 4, lchip->base + LOCOMO_HSD);
^1da177e4c3f415 Linus Torvalds    2005-04-16  426  	r = locomo_readl(lchip->base + LOCOMO_HSD);
^1da177e4c3f415 Linus Torvalds    2005-04-16  427  	r |= 0x8000;
^1da177e4c3f415 Linus Torvalds    2005-04-16  428  	locomo_writel(r, lchip->base + LOCOMO_HSD);
^1da177e4c3f415 Linus Torvalds    2005-04-16  429  
^1da177e4c3f415 Linus Torvalds    2005-04-16  430  	locomo_writel(128 / 8, lchip->base + LOCOMO_HSC);
^1da177e4c3f415 Linus Torvalds    2005-04-16  431  
^1da177e4c3f415 Linus Torvalds    2005-04-16  432  	/* XON */
^1da177e4c3f415 Linus Torvalds    2005-04-16  433  	locomo_writel(0x80, lchip->base + LOCOMO_TADC);
^1da177e4c3f415 Linus Torvalds    2005-04-16  434  	udelay(1000);
^1da177e4c3f415 Linus Torvalds    2005-04-16  435  	/* CLK9MEN */
^1da177e4c3f415 Linus Torvalds    2005-04-16  436  	r = locomo_readl(lchip->base + LOCOMO_TADC);
^1da177e4c3f415 Linus Torvalds    2005-04-16  437  	r |= 0x10;
^1da177e4c3f415 Linus Torvalds    2005-04-16  438  	locomo_writel(r, lchip->base + LOCOMO_TADC);
^1da177e4c3f415 Linus Torvalds    2005-04-16  439  	udelay(100);
^1da177e4c3f415 Linus Torvalds    2005-04-16  440  
^1da177e4c3f415 Linus Torvalds    2005-04-16  441  	/* init DAC */
^1da177e4c3f415 Linus Torvalds    2005-04-16  442  	r = locomo_readl(lchip->base + LOCOMO_DAC);
^1da177e4c3f415 Linus Torvalds    2005-04-16  443  	r |= LOCOMO_DAC_SCLOEB | LOCOMO_DAC_SDAOEB;
^1da177e4c3f415 Linus Torvalds    2005-04-16  444  	locomo_writel(r, lchip->base + LOCOMO_DAC);
^1da177e4c3f415 Linus Torvalds    2005-04-16  445  
^1da177e4c3f415 Linus Torvalds    2005-04-16  446  	r = locomo_readl(lchip->base + LOCOMO_VER);
^1da177e4c3f415 Linus Torvalds    2005-04-16  447  	printk(KERN_INFO "LoCoMo Chip: %lu%lu\n", (r >> 8), (r & 0xff));
^1da177e4c3f415 Linus Torvalds    2005-04-16  448  
^1da177e4c3f415 Linus Torvalds    2005-04-16  449  	/*
^1da177e4c3f415 Linus Torvalds    2005-04-16  450  	 * The interrupt controller must be initialised before any
^1da177e4c3f415 Linus Torvalds    2005-04-16  451  	 * other device to ensure that the interrupts are available.
^1da177e4c3f415 Linus Torvalds    2005-04-16  452  	 */
ac609d266e4af4e Eric Miao         2010-02-04  453  	if (lchip->irq != NO_IRQ && lchip->irq_base != NO_IRQ)
^1da177e4c3f415 Linus Torvalds    2005-04-16  454  		locomo_setup_irq(lchip);
^1da177e4c3f415 Linus Torvalds    2005-04-16  455  
^1da177e4c3f415 Linus Torvalds    2005-04-16  456  	for (i = 0; i < ARRAY_SIZE(locomo_devices); i++)
^1da177e4c3f415 Linus Torvalds    2005-04-16  457  		locomo_init_one_child(lchip, &locomo_devices[i]);
^1da177e4c3f415 Linus Torvalds    2005-04-16  458  	return 0;
^1da177e4c3f415 Linus Torvalds    2005-04-16  459  
^1da177e4c3f415 Linus Torvalds    2005-04-16  460   out:
^1da177e4c3f415 Linus Torvalds    2005-04-16  461  	kfree(lchip);
^1da177e4c3f415 Linus Torvalds    2005-04-16  462  	return ret;
^1da177e4c3f415 Linus Torvalds    2005-04-16  463  }
^1da177e4c3f415 Linus Torvalds    2005-04-16  464  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 31215 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v4 27/27] scripts: kernel-doc: validate kernel-doc markup with the actual names
       [not found] <7b013fef4b0a45bddc5f1a5593a282baceb13b0c.1605521731.git.mchehab+huawei@kernel.org>
  2020-11-16 15:06 ` [PATCH v4 27/27] scripts: kernel-doc: validate kernel-doc markup with the actual names kernel test robot
  2020-11-16 15:42 ` kernel test robot
@ 2020-11-16 15:51 ` kernel test robot
  2 siblings, 0 replies; 3+ messages in thread
From: kernel test robot @ 2020-11-16 15:51 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Jonathan Corbet
  Cc: kbuild-all, clang-built-linux, linux-media, Mauro Carvalho Chehab,
	Linux Doc Mailing List, linux-kernel

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

Hi Mauro,

I love your patch! Perhaps something to improve:

[auto build test WARNING on next-20201116]
[cannot apply to drm-intel/for-linux-next s390/features tip/timers/core tip/irq/core tip/sched/core linus/master hnaz-linux-mm/master v5.10-rc4 v5.10-rc3 v5.10-rc2 v5.10-rc4]
[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]

url:    https://github.com/0day-ci/linux/commits/Mauro-Carvalho-Chehab/net-phy-fix-kernel-doc-markups/20201116-191847
base:    034307507118f7e1b18f8403c85af2216da2dc94
config: x86_64-randconfig-r024-20201116 (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project c044709b8fbea2a9a375e4173a6bd735f6866c0c)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # install x86_64 cross compiling tool for clang build
        # apt-get install binutils-x86-64-linux-gnu
        # https://github.com/0day-ci/linux/commit/11cd9cdaab434fff7a5edbee8d8d4ce9ef11acf4
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Mauro-Carvalho-Chehab/net-phy-fix-kernel-doc-markups/20201116-191847
        git checkout 11cd9cdaab434fff7a5edbee8d8d4ce9ef11acf4
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

>> drivers/staging/gasket/gasket_core.c:1556: warning: wrong kernel-doc identifier on line:
    * Lookup a name by number in a num_name table.
   drivers/staging/gasket/gasket_core.c:1655: warning: wrong kernel-doc identifier on line:
    * Asynchronously waits on device.
--
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:46: warning: Enum value 'LOADER_CMD_XFER_QUERY' not described in enum 'ish_loader_commands'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:46: warning: Enum value 'LOADER_CMD_XFER_FRAGMENT' not described in enum 'ish_loader_commands'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:46: warning: Enum value 'LOADER_CMD_START' not described in enum 'ish_loader_commands'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:108: warning: Function parameter or member 'reserved' not described in 'loader_msg_hdr'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:196: warning: Function parameter or member 'data' not described in 'response_info'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:196: warning: Function parameter or member 'max_size' not described in 'response_info'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:196: warning: Function parameter or member 'size' not described in 'response_info'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:196: warning: Function parameter or member 'error' not described in 'response_info'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:196: warning: Function parameter or member 'received' not described in 'response_info'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:196: warning: Function parameter or member 'wait_queue' not described in 'response_info'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:233: warning: Function parameter or member 'loader_ishtp_cl' not described in 'ishtp_cl_data'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:233: warning: Function parameter or member 'cl_device' not described in 'ishtp_cl_data'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:233: warning: Function parameter or member 'response' not described in 'ishtp_cl_data'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:233: warning: Function parameter or member 'flag_retry' not described in 'ishtp_cl_data'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:233: warning: Function parameter or member 'retry_count' not described in 'ishtp_cl_data'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:252: warning: Function parameter or member 'client_data' not described in 'get_firmware_variant'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:252: warning: Function parameter or member 'filename' not described in 'get_firmware_variant'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:281: warning: Function parameter or member 'out_msg' not described in 'loader_cl_send'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:281: warning: Function parameter or member 'out_size' not described in 'loader_cl_send'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:281: warning: Function parameter or member 'in_msg' not described in 'loader_cl_send'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:281: warning: Function parameter or member 'in_size' not described in 'loader_cl_send'
>> drivers/hid/intel-ish-hid/ishtp-fw-loader.c:281: warning: expecting prototype for Send message from host to firmware(). Prototype was for loader_cl_send() instead
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:445: warning: Function parameter or member 'cl_device' not described in 'loader_cl_event_cb'
   drivers/hid/intel-ish-hid/ishtp-fw-loader.c:445: warning: Excess function parameter 'device' description in 'loader_cl_event_cb'
>> drivers/hid/intel-ish-hid/ishtp-fw-loader.c:551: warning: expecting prototype for Loads ISH firmware using ishtp interface(). Prototype was for ish_fw_xfer_ishtp() instead
>> drivers/hid/intel-ish-hid/ishtp-fw-loader.c:745: warning: expecting prototype for Start executing ISH main firmware(). Prototype was for ish_fw_start() instead
>> drivers/hid/intel-ish-hid/ishtp-fw-loader.c:767: warning: expecting prototype for Loads ISH firmware from host(). Prototype was for load_fw_from_host() instead
--
>> drivers/gpu/drm/gma500/intel_gmbus.c:386: warning: expecting prototype for intel_gmbus_setup(). Prototype was for gma_intel_setup_gmbus() instead
--
   drivers/gpu/drm/gma500/intel_bios.c:581: warning: Function parameter or member 'dev' not described in 'psb_intel_destroy_bios'
>> drivers/gpu/drm/gma500/intel_bios.c:581: warning: expecting prototype for Destroy and free VBT data(). Prototype was for psb_intel_destroy_bios() instead
--
   drivers/gpu/drm/gma500/gma_display.c:27: warning: Function parameter or member 'crtc' not described in 'gma_pipe_has_type'
   drivers/gpu/drm/gma500/gma_display.c:27: warning: Function parameter or member 'type' not described in 'gma_pipe_has_type'
>> drivers/gpu/drm/gma500/gma_display.c:27: warning: expecting prototype for Returns whether any output on the specified pipe is of the specified type(). Prototype was for gma_pipe_has_type() instead
>> drivers/gpu/drm/gma500/gma_display.c:184: warning: wrong kernel-doc identifier on line:
    * Sets the power management mode of the pipe and plane.
   drivers/gpu/drm/gma500/gma_display.c:573: warning: Function parameter or member 'crtc' not described in 'gma_crtc_save'
>> drivers/gpu/drm/gma500/gma_display.c:573: warning: expecting prototype for Save HW states of given crtc(). Prototype was for gma_crtc_save() instead
   drivers/gpu/drm/gma500/gma_display.c:616: warning: Function parameter or member 'crtc' not described in 'gma_crtc_restore'
>> drivers/gpu/drm/gma500/gma_display.c:616: warning: expecting prototype for Restore HW states of given crtc(). Prototype was for gma_crtc_restore() instead
--
>> drivers/gpu/drm/gma500/psb_irq.c:130: warning: wrong kernel-doc identifier on line:
    * Display controller interrupt handler for pipe event.
--
>> drivers/gpu/drm/gma500/psb_intel_display.c:75: warning: wrong kernel-doc identifier on line:
    * Return the pipe currently connected to the panel fitter,
--
   drivers/gpu/drm/gma500/psb_intel_sdvo.c:230: warning: Function parameter or member 'psb_intel_sdvo' not described in 'psb_intel_sdvo_write_sdvox'
   drivers/gpu/drm/gma500/psb_intel_sdvo.c:230: warning: Function parameter or member 'val' not described in 'psb_intel_sdvo_write_sdvox'
>> drivers/gpu/drm/gma500/psb_intel_sdvo.c:230: warning: expecting prototype for but always writes both(). Prototype was for psb_intel_sdvo_write_sdvox() instead
>> drivers/gpu/drm/gma500/psb_intel_sdvo.c:592: warning: wrong kernel-doc identifier on line:
    * Return whether each input is trained.
   drivers/gpu/drm/gma500/psb_intel_sdvo.c:1831: warning: Function parameter or member 'dev_priv' not described in 'psb_intel_sdvo_select_ddc_bus'
   drivers/gpu/drm/gma500/psb_intel_sdvo.c:1831: warning: Function parameter or member 'sdvo' not described in 'psb_intel_sdvo_select_ddc_bus'
   drivers/gpu/drm/gma500/psb_intel_sdvo.c:1831: warning: Function parameter or member 'reg' not described in 'psb_intel_sdvo_select_ddc_bus'
>> drivers/gpu/drm/gma500/psb_intel_sdvo.c:1831: warning: expecting prototype for Choose the appropriate DDC bus for control bus switch command for this(). Prototype was for psb_intel_sdvo_select_ddc_bus() instead
--
   drivers/gpu/drm/mga/mga_ioc32.c:2: warning: Cannot understand  * \file mga_ioc32.c
    on line 2 - I thought it was a doc line
   drivers/gpu/drm/mga/mga_ioc32.c:171: warning: Function parameter or member 'filp' not described in 'mga_compat_ioctl'
   drivers/gpu/drm/mga/mga_ioc32.c:171: warning: Function parameter or member 'cmd' not described in 'mga_compat_ioctl'
   drivers/gpu/drm/mga/mga_ioc32.c:171: warning: Function parameter or member 'arg' not described in 'mga_compat_ioctl'
>> drivers/gpu/drm/mga/mga_ioc32.c:171: warning: expecting prototype for Called whenever a 32(). Prototype was for mga_compat_ioctl() instead

vim +1556 drivers/staging/gasket/gasket_core.c

80666096eb78f0e Todd Poynor 2018-07-31  1554  
80666096eb78f0e Todd Poynor 2018-07-31  1555  /**
80666096eb78f0e Todd Poynor 2018-07-31 @1556   * Lookup a name by number in a num_name table.
80666096eb78f0e Todd Poynor 2018-07-31  1557   * @num: Number to lookup.
80666096eb78f0e Todd Poynor 2018-07-31  1558   * @table: Array of num_name structures, the table for the lookup.
80666096eb78f0e Todd Poynor 2018-07-31  1559   *
80666096eb78f0e Todd Poynor 2018-07-31  1560   * Description: Searches for num in the table.  If found, the
80666096eb78f0e Todd Poynor 2018-07-31  1561   *		corresponding name is returned; otherwise NULL
80666096eb78f0e Todd Poynor 2018-07-31  1562   *		is returned.
80666096eb78f0e Todd Poynor 2018-07-31  1563   *
80666096eb78f0e Todd Poynor 2018-07-31  1564   *		The table must have a NULL name pointer at the end.
80666096eb78f0e Todd Poynor 2018-07-31  1565   */
88c8a377c00ff3a Todd Poynor 2018-07-31  1566  const char *gasket_num_name_lookup(uint num,
88c8a377c00ff3a Todd Poynor 2018-07-31  1567  				   const struct gasket_num_name *table)
80666096eb78f0e Todd Poynor 2018-07-31  1568  {
80666096eb78f0e Todd Poynor 2018-07-31  1569  	uint i = 0;
80666096eb78f0e Todd Poynor 2018-07-31  1570  
80666096eb78f0e Todd Poynor 2018-07-31  1571  	while (table[i].snn_name) {
80666096eb78f0e Todd Poynor 2018-07-31  1572  		if (num == table[i].snn_num)
9a69f5087ccc20b Simon Que   2018-06-29  1573  			break;
80666096eb78f0e Todd Poynor 2018-07-31  1574  		++i;
9a69f5087ccc20b Simon Que   2018-06-29  1575  	}
9a69f5087ccc20b Simon Que   2018-06-29  1576  
80666096eb78f0e Todd Poynor 2018-07-31  1577  	return table[i].snn_name;
80666096eb78f0e Todd Poynor 2018-07-31  1578  }
80666096eb78f0e Todd Poynor 2018-07-31  1579  EXPORT_SYMBOL(gasket_num_name_lookup);
80666096eb78f0e Todd Poynor 2018-07-31  1580  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 32328 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-11-16 15:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <7b013fef4b0a45bddc5f1a5593a282baceb13b0c.1605521731.git.mchehab+huawei@kernel.org>
2020-11-16 15:06 ` [PATCH v4 27/27] scripts: kernel-doc: validate kernel-doc markup with the actual names kernel test robot
2020-11-16 15:42 ` kernel test robot
2020-11-16 15:51 ` kernel test robot

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