From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: [xlnx:master 9671/9819] drivers/usb/dwc3/dwc3-of-simple.c:651:2: error: implicit declaration of function 'dwc3_simple_vbus'; did you mean 'dwc3_of_simple_probe'?
Date: Mon, 24 Feb 2020 22:04:10 +0800 [thread overview]
Message-ID: <202002242201.bcjNVjNs%lkp@intel.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 2704 bytes --]
tree: https://github.com/Xilinx/linux-xlnx master
head: 0bf5e5fe96bf3663f5d47e01d7f8d0e4d737e492
commit: 309d88250e99b729b76ff44fc32d86bfd6eb14d2 [9671/9819] nvmem: zynqmp: Added zynqmp nvmem get_silicon_version()
config: microblaze-randconfig-a001-20200224 (attached as .config)
compiler: microblaze-linux-gcc (GCC) 7.5.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
git checkout 309d88250e99b729b76ff44fc32d86bfd6eb14d2
# save the attached .config to linux build tree
GCC_VERSION=7.5.0 make.cross ARCH=microblaze
If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
drivers/usb/dwc3/dwc3-of-simple.c: In function 'dwc3_of_simple_suspend':
>> drivers/usb/dwc3/dwc3-of-simple.c:651:2: error: implicit declaration of function 'dwc3_simple_vbus'; did you mean 'dwc3_of_simple_probe'? [-Werror=implicit-function-declaration]
dwc3_simple_vbus(simple->dwc, true);
^~~~~~~~~~~~~~~~
dwc3_of_simple_probe
cc1: some warnings being treated as errors
vim +651 drivers/usb/dwc3/dwc3-of-simple.c
76251db8656194 Enric Balletbo i Serra 2018-07-16 645
66174b6998a645 Arnd Bergmann 2018-08-13 646 static int __maybe_unused dwc3_of_simple_suspend(struct device *dev)
76251db8656194 Enric Balletbo i Serra 2018-07-16 647 {
76251db8656194 Enric Balletbo i Serra 2018-07-16 648 struct dwc3_of_simple *simple = dev_get_drvdata(dev);
76251db8656194 Enric Balletbo i Serra 2018-07-16 649
d428092fcbb475 Piyush Mehta 2020-01-23 650 /* Ask ULPI to turn OFF Vbus */
d428092fcbb475 Piyush Mehta 2020-01-23 @651 dwc3_simple_vbus(simple->dwc, true);
d428092fcbb475 Piyush Mehta 2020-01-23 652
76251db8656194 Enric Balletbo i Serra 2018-07-16 653 if (simple->need_reset)
76251db8656194 Enric Balletbo i Serra 2018-07-16 654 reset_control_assert(simple->resets);
76251db8656194 Enric Balletbo i Serra 2018-07-16 655
76251db8656194 Enric Balletbo i Serra 2018-07-16 656 return 0;
76251db8656194 Enric Balletbo i Serra 2018-07-16 657 }
76251db8656194 Enric Balletbo i Serra 2018-07-16 658
:::::: The code at line 651 was first introduced by commit
:::::: d428092fcbb4753e0882f1d07084b6da0623e437 usb: dwc3: Add support for removing vbus when suspended
:::::: TO: Piyush Mehta <piyush.mehta@xilinx.com>
:::::: CC: Michal Simek <michal.simek@xilinx.com>
---
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: 24996 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
To: Nava kishore Manne <nava.manne@xilinx.com>
Cc: Michal Simek <monstr@monstr.eu>,
kbuild-all@lists.01.org, linux-arm-kernel@lists.infradead.org
Subject: [xlnx:master 9671/9819] drivers/usb/dwc3/dwc3-of-simple.c:651:2: error: implicit declaration of function 'dwc3_simple_vbus'; did you mean 'dwc3_of_simple_probe'?
Date: Mon, 24 Feb 2020 22:04:10 +0800 [thread overview]
Message-ID: <202002242201.bcjNVjNs%lkp@intel.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 2652 bytes --]
tree: https://github.com/Xilinx/linux-xlnx master
head: 0bf5e5fe96bf3663f5d47e01d7f8d0e4d737e492
commit: 309d88250e99b729b76ff44fc32d86bfd6eb14d2 [9671/9819] nvmem: zynqmp: Added zynqmp nvmem get_silicon_version()
config: microblaze-randconfig-a001-20200224 (attached as .config)
compiler: microblaze-linux-gcc (GCC) 7.5.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
git checkout 309d88250e99b729b76ff44fc32d86bfd6eb14d2
# save the attached .config to linux build tree
GCC_VERSION=7.5.0 make.cross ARCH=microblaze
If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
drivers/usb/dwc3/dwc3-of-simple.c: In function 'dwc3_of_simple_suspend':
>> drivers/usb/dwc3/dwc3-of-simple.c:651:2: error: implicit declaration of function 'dwc3_simple_vbus'; did you mean 'dwc3_of_simple_probe'? [-Werror=implicit-function-declaration]
dwc3_simple_vbus(simple->dwc, true);
^~~~~~~~~~~~~~~~
dwc3_of_simple_probe
cc1: some warnings being treated as errors
vim +651 drivers/usb/dwc3/dwc3-of-simple.c
76251db8656194 Enric Balletbo i Serra 2018-07-16 645
66174b6998a645 Arnd Bergmann 2018-08-13 646 static int __maybe_unused dwc3_of_simple_suspend(struct device *dev)
76251db8656194 Enric Balletbo i Serra 2018-07-16 647 {
76251db8656194 Enric Balletbo i Serra 2018-07-16 648 struct dwc3_of_simple *simple = dev_get_drvdata(dev);
76251db8656194 Enric Balletbo i Serra 2018-07-16 649
d428092fcbb475 Piyush Mehta 2020-01-23 650 /* Ask ULPI to turn OFF Vbus */
d428092fcbb475 Piyush Mehta 2020-01-23 @651 dwc3_simple_vbus(simple->dwc, true);
d428092fcbb475 Piyush Mehta 2020-01-23 652
76251db8656194 Enric Balletbo i Serra 2018-07-16 653 if (simple->need_reset)
76251db8656194 Enric Balletbo i Serra 2018-07-16 654 reset_control_assert(simple->resets);
76251db8656194 Enric Balletbo i Serra 2018-07-16 655
76251db8656194 Enric Balletbo i Serra 2018-07-16 656 return 0;
76251db8656194 Enric Balletbo i Serra 2018-07-16 657 }
76251db8656194 Enric Balletbo i Serra 2018-07-16 658
:::::: The code at line 651 was first introduced by commit
:::::: d428092fcbb4753e0882f1d07084b6da0623e437 usb: dwc3: Add support for removing vbus when suspended
:::::: TO: Piyush Mehta <piyush.mehta@xilinx.com>
:::::: CC: Michal Simek <michal.simek@xilinx.com>
---
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: 24996 bytes --]
[-- Attachment #3: Type: text/plain, Size: 176 bytes --]
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next reply other threads:[~2020-02-24 14:04 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-24 14:04 kbuild test robot [this message]
2020-02-24 14:04 ` [xlnx:master 9671/9819] drivers/usb/dwc3/dwc3-of-simple.c:651:2: error: implicit declaration of function 'dwc3_simple_vbus'; did you mean 'dwc3_of_simple_probe'? kbuild test robot
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=202002242201.bcjNVjNs%lkp@intel.com \
--to=lkp@intel.com \
--cc=kbuild-all@lists.01.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 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.