From: kernel test robot <lkp@intel.com>
To: Mauro Carvalho Chehab <mchehab@kernel.org>,
Jonathan Corbet <corbet@lwn.net>,
Linux Doc Mailing List <linux-doc@vger.kernel.org>
Cc: kbuild-all@lists.01.org, linux-media@vger.kernel.org,
Mauro Carvalho Chehab <mchehab@kernel.org>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] kernel-doc: validate kernel-doc markup with the actual names
Date: Fri, 23 Oct 2020 19:24:57 +0800 [thread overview]
Message-ID: <202010231910.fG2s7O1q-lkp@intel.com> (raw)
In-Reply-To: <ebd075324a26f07b801cc47465cff51e9bf5c115.1603443534.git.mchehab+huawei@kernel.org>
[-- Attachment #1: Type: text/plain, Size: 4058 bytes --]
Hi Mauro,
I love your patch! Perhaps something to improve:
[auto build test WARNING on linus/master]
[also build test WARNING on next-20201023]
[cannot apply to lwn/docs-next linux/master v5.9]
[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/kernel-doc-validate-kernel-doc-markup-with-the-actual-names/20201023-170132
base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git f9893351acaecf0a414baf9942b48d5bb5c688c6
config: parisc-defconfig (attached as .config)
compiler: hppa-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/234e4a9d3907dbf2a71da9a2f49007e19d2a2e68
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Mauro-Carvalho-Chehab/kernel-doc-validate-kernel-doc-markup-with-the-actual-names/20201023-170132
git checkout 234e4a9d3907dbf2a71da9a2f49007e19d2a2e68
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=parisc
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/tty/serial/mux.c:118: warning: Function parameter or member 'port' not described in 'mux_set_mctrl'
drivers/tty/serial/mux.c:118: warning: Excess function parameter 'ports' description in 'mux_set_mctrl'
>> drivers/tty/serial/mux.c:371: warning: expecting prototype for mux_drv_poll(). Prototype was for mux_poll() instead
vim +371 drivers/tty/serial/mux.c
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 363
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 364 /**
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 365 * mux_drv_poll - Mux poll function.
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 366 * @unused: Unused variable
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 367 *
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 368 * This function periodically polls the Serial MUX to check for new data.
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 369 */
e99e88a9d2b0674 drivers/tty/serial/mux.c Kees Cook 2017-10-16 370 static void mux_poll(struct timer_list *unused)
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 @371 {
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 372 int i;
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 373
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 374 for(i = 0; i < port_cnt; ++i) {
4bd5d82779466a2 drivers/serial/mux.c Ryan Bradetich 2006-11-03 375 if(!mux_ports[i].enabled)
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 376 continue;
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 377
4bd5d82779466a2 drivers/serial/mux.c Ryan Bradetich 2006-11-03 378 mux_read(&mux_ports[i].port);
4bd5d82779466a2 drivers/serial/mux.c Ryan Bradetich 2006-11-03 379 mux_write(&mux_ports[i].port);
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 380 }
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 381
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 382 mod_timer(&mux_timer, jiffies + MUX_POLL_DELAY);
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 383 }
^1da177e4c3f415 drivers/serial/mux.c Linus Torvalds 2005-04-16 384
---
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: 18434 bytes --]
prev parent reply other threads:[~2020-10-23 11:25 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-23 8:59 [PATCH v2] kernel-doc: validate kernel-doc markup with the actual names Mauro Carvalho Chehab
2020-10-23 9:26 ` Mauro Carvalho Chehab
2020-10-23 11:02 ` kernel test robot
2020-10-23 11:24 ` kernel test robot [this message]
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=202010231910.fG2s7O1q-lkp@intel.com \
--to=lkp@intel.com \
--cc=corbet@lwn.net \
--cc=kbuild-all@lists.01.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@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