All of lore.kernel.org
 help / color / mirror / Atom feed
* [char-misc:char-misc-testing 41/67] drivers/char/xillybus/xillybus_core.c:16:1: iwyu: warning: superfluous #include <linux/list.h>
@ 2021-05-27 19:16 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2021-05-27 19:16 UTC (permalink / raw)
  To: kbuild

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

CC: kbuild-all(a)lists.01.org
TO: Eli Billauer <eli.billauer@gmail.com>
CC: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git char-misc-testing
head:   d99247f9b542533ddbf87a3481a05473b8e48194
commit: 8cb5d216ab3365bc85aac65da27f1c2b3dd6f366 [41/67] char: xillybus: Move class-related functions to new xillybus_class.c
:::::: branch date: 6 hours ago
:::::: commit date: 7 hours ago
config: x86_64-randconfig-b001-20210527 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 6505c630407c5feec818f0bb1c284f9eeebf2071)
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
        # apt-get install iwyu # include-what-you-use
        # https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git/commit/?id=8cb5d216ab3365bc85aac65da27f1c2b3dd6f366
        git remote add char-misc https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
        git fetch --no-tags char-misc char-misc-testing
        git checkout 8cb5d216ab3365bc85aac65da27f1c2b3dd6f366
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross C=1 CHECK=iwyu ARCH=x86_64 

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


iwyu warnings: (new ones prefixed by >>)
   drivers/char/xillybus/xillybus_core.c:20:1: iwyu: warning: superfluous #include <linux/dma-mapping.h>
   drivers/char/xillybus/xillybus_core.c:21:1: iwyu: warning: superfluous #include <linux/interrupt.h>
   drivers/char/xillybus/xillybus_core.c:19:1: iwyu: warning: superfluous #include <linux/io.h>
>> drivers/char/xillybus/xillybus_core.c:16:1: iwyu: warning: superfluous #include <linux/list.h>
   drivers/char/xillybus/xillybus_core.c:22:1: iwyu: warning: superfluous #include <linux/sched.h>
   drivers/char/xillybus/xillybus_core.c:29:1: iwyu: warning: superfluous #include <linux/slab.h>

vim +16 drivers/char/xillybus/xillybus_core.c

48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24 @16  #include <linux/list.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  17  #include <linux/device.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  18  #include <linux/module.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  19  #include <linux/io.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  20  #include <linux/dma-mapping.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  21  #include <linux/interrupt.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  22  #include <linux/sched.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  23  #include <linux/fs.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  24  #include <linux/spinlock.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  25  #include <linux/mutex.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  26  #include <linux/crc32.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  27  #include <linux/poll.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  28  #include <linux/delay.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  29  #include <linux/slab.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  30  #include <linux/workqueue.h>
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  31  #include "xillybus.h"
8cb5d216ab3365 drivers/char/xillybus/xillybus_core.c    Eli Billauer 2021-05-26  32  #include "xillybus_class.h"
48bae0507410a7 drivers/staging/xillybus/xillybus_core.c Eli Billauer 2013-06-24  33  

:::::: The code at line 16 was first introduced by commit
:::::: 48bae0507410a7b8bbedec6d790c9b85c5a6391f staging: New driver: Xillybus generic interface for FPGA

:::::: TO: Eli Billauer <eli.billauer@gmail.com>
:::::: CC: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

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

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

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

only message in thread, other threads:[~2021-05-27 19:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-27 19:16 [char-misc:char-misc-testing 41/67] drivers/char/xillybus/xillybus_core.c:16:1: iwyu: warning: superfluous #include <linux/list.h> kernel test robot

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.