All of lore.kernel.org
 help / color / mirror / Atom feed
* drivers/gpu/drm/xlnx/zynqmp_disp.c:14:1: iwyu: warning: superfluous #include <drm/drm_atomic_uapi.h>
@ 2021-07-03 13:52 kernel test robot
  0 siblings, 0 replies; 2+ messages in thread
From: kernel test robot @ 2021-07-03 13:52 UTC (permalink / raw)
  To: kbuild

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

CC: kbuild-all(a)lists.01.org
CC: linux-kernel(a)vger.kernel.org
TO: Hyun Kwon <hyun.kwon@xilinx.com>
CC: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   4b820e167bf6f410ace479d8df5b15a574000e75
commit: d76271d22694e874ed70791702db9252ffe96a4c drm: xlnx: DRM/KMS driver for Xilinx ZynqMP DisplayPort Subsystem
date:   12 months ago
:::::: branch date: 9 hours ago
:::::: commit date: 12 months ago
config: x86_64-randconfig-b001-20210630 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 8d21d5472501460933e78aead04cf59579025ba4)
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/torvalds/linux.git/commit/?id=d76271d22694e874ed70791702db9252ffe96a4c
        git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
        git fetch --no-tags linus master
        git checkout d76271d22694e874ed70791702db9252ffe96a4c
        # save the attached .config to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross C=1 CHECK=iwyu O=build_dir ARCH=x86_64 SHELL=/bin/bash drivers/clk/qcom/ drivers/gpu/drm/arm/ drivers/gpu/drm/bridge/ drivers/gpu/drm/panel/ drivers/gpu/drm/rockchip/ drivers/gpu/drm/xlnx/ drivers/mailbox/ drivers/misc/ drivers/pinctrl/ drivers/vfio/ fs/ubifs/

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/gpu/drm/xlnx/zynqmp_disp.c:14:1: iwyu: warning: superfluous #include <drm/drm_atomic_uapi.h>
>> drivers/gpu/drm/xlnx/zynqmp_disp.c:27:1: iwyu: warning: superfluous #include <linux/dma-mapping.h>
   drivers/gpu/drm/xlnx/zynqmp_disp.c:29:1: iwyu: warning: superfluous #include <linux/module.h>
>> drivers/gpu/drm/xlnx/zynqmp_disp.c:30:1: iwyu: warning: superfluous #include <linux/of.h>
--
>> drivers/gpu/drm/xlnx/zynqmp_dpsub.c:23:1: iwyu: warning: superfluous #include <drm/drm_fourcc.h>
--
>> drivers/gpu/drm/xlnx/zynqmp_dp.c:12:1: iwyu: warning: superfluous #include <drm/drm_atomic_helper.h>
>> drivers/gpu/drm/xlnx/zynqmp_dp.c:21:1: iwyu: warning: superfluous #include <drm/drm_of.h>
   drivers/gpu/drm/xlnx/zynqmp_dp.c:28:1: iwyu: warning: superfluous #include <linux/module.h>

vim +14 drivers/gpu/drm/xlnx/zynqmp_disp.c

d76271d22694e8 Hyun Kwon 2018-07-07 @14  #include <drm/drm_atomic_uapi.h>
d76271d22694e8 Hyun Kwon 2018-07-07  15  #include <drm/drm_crtc.h>
d76271d22694e8 Hyun Kwon 2018-07-07  16  #include <drm/drm_device.h>
d76271d22694e8 Hyun Kwon 2018-07-07  17  #include <drm/drm_fb_cma_helper.h>
d76271d22694e8 Hyun Kwon 2018-07-07  18  #include <drm/drm_fourcc.h>
d76271d22694e8 Hyun Kwon 2018-07-07  19  #include <drm/drm_framebuffer.h>
d76271d22694e8 Hyun Kwon 2018-07-07  20  #include <drm/drm_managed.h>
d76271d22694e8 Hyun Kwon 2018-07-07  21  #include <drm/drm_plane.h>
d76271d22694e8 Hyun Kwon 2018-07-07  22  #include <drm/drm_plane_helper.h>
d76271d22694e8 Hyun Kwon 2018-07-07  23  #include <drm/drm_vblank.h>
d76271d22694e8 Hyun Kwon 2018-07-07  24  
d76271d22694e8 Hyun Kwon 2018-07-07  25  #include <linux/clk.h>
d76271d22694e8 Hyun Kwon 2018-07-07  26  #include <linux/delay.h>
d76271d22694e8 Hyun Kwon 2018-07-07 @27  #include <linux/dma-mapping.h>
d76271d22694e8 Hyun Kwon 2018-07-07  28  #include <linux/dmaengine.h>
d76271d22694e8 Hyun Kwon 2018-07-07  29  #include <linux/module.h>
d76271d22694e8 Hyun Kwon 2018-07-07 @30  #include <linux/of.h>
d76271d22694e8 Hyun Kwon 2018-07-07  31  #include <linux/of_dma.h>
d76271d22694e8 Hyun Kwon 2018-07-07  32  #include <linux/platform_device.h>
d76271d22694e8 Hyun Kwon 2018-07-07  33  #include <linux/pm_runtime.h>
d76271d22694e8 Hyun Kwon 2018-07-07  34  #include <linux/spinlock.h>
d76271d22694e8 Hyun Kwon 2018-07-07  35  

---
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: 38815 bytes --]

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

* drivers/gpu/drm/xlnx/zynqmp_disp.c:14:1: iwyu: warning: superfluous #include <drm/drm_atomic_uapi.h>
@ 2021-07-02  1:21 kernel test robot
  0 siblings, 0 replies; 2+ messages in thread
From: kernel test robot @ 2021-07-02  1:21 UTC (permalink / raw)
  To: kbuild

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

CC: kbuild-all(a)lists.01.org
CC: linux-kernel(a)vger.kernel.org
TO: Hyun Kwon <hyun.kwon@xilinx.com>
CC: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   e04360a2ea01bf42aa639b65aad81f502e896c7f
commit: d76271d22694e874ed70791702db9252ffe96a4c drm: xlnx: DRM/KMS driver for Xilinx ZynqMP DisplayPort Subsystem
date:   12 months ago
:::::: branch date: 3 hours ago
:::::: commit date: 12 months ago
config: x86_64-randconfig-b001-20210630 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 8d21d5472501460933e78aead04cf59579025ba4)
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/torvalds/linux.git/commit/?id=d76271d22694e874ed70791702db9252ffe96a4c
        git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
        git fetch --no-tags linus master
        git checkout d76271d22694e874ed70791702db9252ffe96a4c
        # save the attached .config to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross C=1 CHECK=iwyu O=build_dir ARCH=x86_64 SHELL=/bin/bash drivers/clk/qcom/ drivers/gpu/drm/arm/ drivers/gpu/drm/bridge/ drivers/gpu/drm/panel/ drivers/gpu/drm/rockchip/ drivers/gpu/drm/xlnx/ drivers/mailbox/ drivers/misc/ drivers/pinctrl/ drivers/vfio/ fs/ubifs/

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/gpu/drm/xlnx/zynqmp_disp.c:14:1: iwyu: warning: superfluous #include <drm/drm_atomic_uapi.h>
>> drivers/gpu/drm/xlnx/zynqmp_disp.c:27:1: iwyu: warning: superfluous #include <linux/dma-mapping.h>
   drivers/gpu/drm/xlnx/zynqmp_disp.c:29:1: iwyu: warning: superfluous #include <linux/module.h>
>> drivers/gpu/drm/xlnx/zynqmp_disp.c:30:1: iwyu: warning: superfluous #include <linux/of.h>
--
>> drivers/gpu/drm/xlnx/zynqmp_dpsub.c:23:1: iwyu: warning: superfluous #include <drm/drm_fourcc.h>
--
>> drivers/gpu/drm/xlnx/zynqmp_dp.c:12:1: iwyu: warning: superfluous #include <drm/drm_atomic_helper.h>
>> drivers/gpu/drm/xlnx/zynqmp_dp.c:21:1: iwyu: warning: superfluous #include <drm/drm_of.h>
   drivers/gpu/drm/xlnx/zynqmp_dp.c:28:1: iwyu: warning: superfluous #include <linux/module.h>

vim +14 drivers/gpu/drm/xlnx/zynqmp_disp.c

d76271d22694e8 Hyun Kwon 2018-07-07 @14  #include <drm/drm_atomic_uapi.h>
d76271d22694e8 Hyun Kwon 2018-07-07  15  #include <drm/drm_crtc.h>
d76271d22694e8 Hyun Kwon 2018-07-07  16  #include <drm/drm_device.h>
d76271d22694e8 Hyun Kwon 2018-07-07  17  #include <drm/drm_fb_cma_helper.h>
d76271d22694e8 Hyun Kwon 2018-07-07  18  #include <drm/drm_fourcc.h>
d76271d22694e8 Hyun Kwon 2018-07-07  19  #include <drm/drm_framebuffer.h>
d76271d22694e8 Hyun Kwon 2018-07-07  20  #include <drm/drm_managed.h>
d76271d22694e8 Hyun Kwon 2018-07-07  21  #include <drm/drm_plane.h>
d76271d22694e8 Hyun Kwon 2018-07-07  22  #include <drm/drm_plane_helper.h>
d76271d22694e8 Hyun Kwon 2018-07-07  23  #include <drm/drm_vblank.h>
d76271d22694e8 Hyun Kwon 2018-07-07  24  
d76271d22694e8 Hyun Kwon 2018-07-07  25  #include <linux/clk.h>
d76271d22694e8 Hyun Kwon 2018-07-07  26  #include <linux/delay.h>
d76271d22694e8 Hyun Kwon 2018-07-07 @27  #include <linux/dma-mapping.h>
d76271d22694e8 Hyun Kwon 2018-07-07  28  #include <linux/dmaengine.h>
d76271d22694e8 Hyun Kwon 2018-07-07  29  #include <linux/module.h>
d76271d22694e8 Hyun Kwon 2018-07-07 @30  #include <linux/of.h>
d76271d22694e8 Hyun Kwon 2018-07-07  31  #include <linux/of_dma.h>
d76271d22694e8 Hyun Kwon 2018-07-07  32  #include <linux/platform_device.h>
d76271d22694e8 Hyun Kwon 2018-07-07  33  #include <linux/pm_runtime.h>
d76271d22694e8 Hyun Kwon 2018-07-07  34  #include <linux/spinlock.h>
d76271d22694e8 Hyun Kwon 2018-07-07  35  

---
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: 38813 bytes --]

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

end of thread, other threads:[~2021-07-03 13:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-03 13:52 drivers/gpu/drm/xlnx/zynqmp_disp.c:14:1: iwyu: warning: superfluous #include <drm/drm_atomic_uapi.h> kernel test robot
  -- strict thread matches above, loose matches on Subject: below --
2021-07-02  1:21 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.