Hi Basavaraj, kernel test robot noticed the following build errors: [auto build test ERROR on usb/usb-testing] [also build test ERROR on usb/usb-next usb/usb-linus linus/master v6.3 next-20230426] [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#_base_tree_information] url: https://github.com/intel-lab-lkp/linux/commits/Basavaraj-Natikar/USB-Extend-pci-resume-function-to-handle-PM-events/20230427-185141 base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing patch link: https://lore.kernel.org/r/20230427104805.3560591-2-Basavaraj.Natikar%40amd.com patch subject: [PATCH v2 1/2] USB: Extend pci resume function to handle PM events config: arc-randconfig-r043-20230427 (https://download.01.org/0day-ci/archive/20230427/202304272113.D8iiep8w-lkp@xxxxxxxxx/config) compiler: arceb-elf-gcc (GCC) 12.1.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/intel-lab-lkp/linux/commit/c56600f81d90e04002ac435d27ccd0358b560d88 git remote add linux-review https://github.com/intel-lab-lkp/linux git fetch --no-tags linux-review Basavaraj-Natikar/USB-Extend-pci-resume-function-to-handle-PM-events/20230427-185141 git checkout c56600f81d90e04002ac435d27ccd0358b560d88 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arc olddefconfig COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arc SHELL=/bin/bash drivers/usb/host/ If you fix the issue, kindly add following tag where applicable | Reported-by: kernel test robot <lkp@xxxxxxxxx> | Link: https://lore.kernel.org/oe-kbuild-all/202304272113.D8iiep8w-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): drivers/usb/host/xhci-histb.c: In function 'xhci_histb_resume': >> drivers/usb/host/xhci-histb.c:370:34: error: incompatible type for argument 2 of 'xhci_resume' 370 | return xhci_resume(xhci, 0); | ^ | | | int In file included from drivers/usb/host/xhci-histb.c:19: drivers/usb/host/xhci.h:2143:53: note: expected 'pm_message_t' {aka 'struct pm_message'} but argument is of type 'int' 2143 | int xhci_resume(struct xhci_hcd *xhci, pm_message_t msg); | ~~~~~~~~~~~~~^~~ vim +/xhci_resume +370 drivers/usb/host/xhci-histb.c c508f41da07882 Jianguo Sun 2018-05-21 360 c508f41da07882 Jianguo Sun 2018-05-21 361 static int __maybe_unused xhci_histb_resume(struct device *dev) c508f41da07882 Jianguo Sun 2018-05-21 362 { c508f41da07882 Jianguo Sun 2018-05-21 363 struct xhci_hcd_histb *histb = dev_get_drvdata(dev); c508f41da07882 Jianguo Sun 2018-05-21 364 struct usb_hcd *hcd = histb->hcd; c508f41da07882 Jianguo Sun 2018-05-21 365 struct xhci_hcd *xhci = hcd_to_xhci(hcd); c508f41da07882 Jianguo Sun 2018-05-21 366 c508f41da07882 Jianguo Sun 2018-05-21 367 if (!device_may_wakeup(dev)) c508f41da07882 Jianguo Sun 2018-05-21 368 xhci_histb_host_enable(histb); c508f41da07882 Jianguo Sun 2018-05-21 369 c508f41da07882 Jianguo Sun 2018-05-21 @370 return xhci_resume(xhci, 0); c508f41da07882 Jianguo Sun 2018-05-21 371 } c508f41da07882 Jianguo Sun 2018-05-21 372 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests