CC: [email protected] CC: [email protected] TO: Adam Ford <[email protected]> CC: Daniel Lezcano <[email protected]>
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 8096acd7442e613fad0354fc8dfdb2003cceea0b commit: 5093402e5b449b64f7bbaa09057ce40a8f3c1484 thermal: ti-soc-thermal: Enable addition power management date: 9 months ago :::::: branch date: 20 hours ago :::::: commit date: 9 months ago config: x86_64-randconfig-b001-20210715 (attached as .config) compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 0e49c54a8cbd3e779e5526a5888c683c01cc3c50) 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=5093402e5b449b64f7bbaa09057ce40a8f3c1484 git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git git fetch --no-tags linus master git checkout 5093402e5b449b64f7bbaa09057ce40a8f3c1484 # 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/phy/ralink/ drivers/thermal/ti-soc-thermal/ drivers/virt/ If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot <[email protected]> iwyu warnings: (new ones prefixed by >>) drivers/thermal/ti-soc-thermal/ti-bandgap.c:13:1: iwyu: warning: superfluous #include <linux/export.h> drivers/thermal/ti-soc-thermal/ti-bandgap.c:14:1: iwyu: warning: superfluous #include <linux/init.h> drivers/thermal/ti-soc-thermal/ti-bandgap.c:27:1: iwyu: warning: superfluous #include <linux/io.h> drivers/thermal/ti-soc-thermal/ti-bandgap.c:15:1: iwyu: warning: superfluous #include <linux/kernel.h> drivers/thermal/ti-soc-thermal/ti-bandgap.c:32:1: iwyu: warning: superfluous #include <linux/of.h> drivers/thermal/ti-soc-thermal/ti-bandgap.c:33:1: iwyu: warning: superfluous #include <linux/of_device.h> drivers/thermal/ti-soc-thermal/ti-bandgap.c:26:1: iwyu: warning: superfluous #include <linux/of_irq.h> drivers/thermal/ti-soc-thermal/ti-bandgap.c:25:1: iwyu: warning: superfluous #include <linux/of_platform.h> >> drivers/thermal/ti-soc-thermal/ti-bandgap.c:31:1: iwyu: warning: superfluous >> #include <linux/pm.h> drivers/thermal/ti-soc-thermal/ti-bandgap.c:30:1: iwyu: warning: superfluous #include <linux/pm_runtime.h> vim +31 drivers/thermal/ti-soc-thermal/ti-bandgap.c 8feaf0ce1a0432 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2012-07-12 @13 #include <linux/export.h> 8feaf0ce1a0432 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2012-07-12 14 #include <linux/init.h> 8feaf0ce1a0432 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2012-07-12 15 #include <linux/kernel.h> 8feaf0ce1a0432 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2012-07-12 16 #include <linux/interrupt.h> 8feaf0ce1a0432 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2012-07-12 17 #include <linux/clk.h> 7375f2ac6b2d5f drivers/thermal/ti-soc-thermal/ti-bandgap.c Linus Walleij 2020-02-29 18 #include <linux/gpio/consumer.h> 8feaf0ce1a0432 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2012-07-12 19 #include <linux/platform_device.h> 8feaf0ce1a0432 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2012-07-12 20 #include <linux/err.h> 8feaf0ce1a0432 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2012-07-12 21 #include <linux/types.h> ebf0bd52e657b4 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2013-03-15 22 #include <linux/spinlock.h> 8feaf0ce1a0432 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2012-07-12 23 #include <linux/reboot.h> 8feaf0ce1a0432 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2012-07-12 24 #include <linux/of_device.h> 8feaf0ce1a0432 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2012-07-12 25 #include <linux/of_platform.h> 8feaf0ce1a0432 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2012-07-12 26 #include <linux/of_irq.h> 2aeeb8acfc19f8 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2012-11-13 27 #include <linux/io.h> 5093402e5b449b drivers/thermal/ti-soc-thermal/ti-bandgap.c Adam Ford 2020-09-11 28 #include <linux/cpu_pm.h> 5093402e5b449b drivers/thermal/ti-soc-thermal/ti-bandgap.c Adam Ford 2020-09-11 29 #include <linux/device.h> 5093402e5b449b drivers/thermal/ti-soc-thermal/ti-bandgap.c Adam Ford 2020-09-11 30 #include <linux/pm_runtime.h> 5093402e5b449b drivers/thermal/ti-soc-thermal/ti-bandgap.c Adam Ford 2020-09-11 @31 #include <linux/pm.h> 5093402e5b449b drivers/thermal/ti-soc-thermal/ti-bandgap.c Adam Ford 2020-09-11 32 #include <linux/of.h> 5093402e5b449b drivers/thermal/ti-soc-thermal/ti-bandgap.c Adam Ford 2020-09-11 33 #include <linux/of_device.h> 8feaf0ce1a0432 drivers/staging/omap-thermal/omap-bandgap.c Eduardo Valentin 2012-07-12 34 --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/[email protected]
.config.gz
Description: application/gzip
_______________________________________________ kbuild mailing list -- [email protected] To unsubscribe send an email to [email protected]
