From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [RFC PATCH v2 1/2] PM / domains: Introduce multi PM domains helpers
Date: Thu, 05 Mar 2020 07:51:43 +0800 [thread overview]
Message-ID: <202003050755.DPXCLDTT%lkp@intel.com> (raw)
In-Reply-To: <20200304121943.28989-2-daniel.baluta@oss.nxp.com>
[-- Attachment #1: Type: text/plain, Size: 5851 bytes --]
Hi Daniel,
[FYI, it's a private test report for your RFC patch.]
[auto build test ERROR on pm/linux-next]
[also build test ERROR on shawnguo/for-next asoc/for-next v5.6-rc4 next-20200304]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
url: https://github.com/0day-ci/linux/commits/Daniel-Baluta/Introduce-multi-PM-domains-helpers/20200305-040901
base: https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git linux-next
config: openrisc-randconfig-a001-20200304 (attached as .config)
compiler: or1k-linux-gcc (GCC) 9.2.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
GCC_VERSION=9.2.0 make.cross ARCH=openrisc
If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
or1k-linux-ld: drivers/base/platform.o: in function `dev_multi_pm_attach':
>> include/linux/pm_domain.h:396: multiple definition of `dev_multi_pm_attach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:396: first defined here
or1k-linux-ld: drivers/base/platform.o: in function `dev_multi_pm_detach':
>> include/linux/pm_domain.h:416: multiple definition of `dev_multi_pm_detach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:416: first defined here
or1k-linux-ld: drivers/i2c/i2c-core-base.o: in function `dev_multi_pm_attach':
>> include/linux/pm_domain.h:396: multiple definition of `dev_multi_pm_attach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:396: first defined here
or1k-linux-ld: drivers/i2c/i2c-core-base.o: in function `dev_multi_pm_detach':
>> include/linux/pm_domain.h:416: multiple definition of `dev_multi_pm_detach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:416: first defined here
or1k-linux-ld: drivers/power/avs/qcom-cpr.o: in function `dev_multi_pm_attach':
>> include/linux/pm_domain.h:396: multiple definition of `dev_multi_pm_attach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:396: first defined here
or1k-linux-ld: drivers/power/avs/qcom-cpr.o: in function `dev_multi_pm_detach':
>> include/linux/pm_domain.h:416: multiple definition of `dev_multi_pm_detach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:416: first defined here
or1k-linux-ld: drivers/opp/core.o: in function `dev_multi_pm_attach':
>> include/linux/pm_domain.h:396: multiple definition of `dev_multi_pm_attach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:396: first defined here
or1k-linux-ld: drivers/opp/core.o: in function `dev_multi_pm_detach':
>> include/linux/pm_domain.h:416: multiple definition of `dev_multi_pm_detach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:416: first defined here
or1k-linux-ld: drivers/opp/of.o: in function `dev_multi_pm_attach':
>> include/linux/pm_domain.h:396: multiple definition of `dev_multi_pm_attach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:396: first defined here
or1k-linux-ld: drivers/opp/of.o: in function `dev_multi_pm_detach':
>> include/linux/pm_domain.h:416: multiple definition of `dev_multi_pm_detach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:416: first defined here
or1k-linux-ld: drivers/mmc/core/sdio_bus.o: in function `dev_multi_pm_attach':
>> include/linux/pm_domain.h:396: multiple definition of `dev_multi_pm_attach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:396: first defined here
or1k-linux-ld: drivers/mmc/core/sdio_bus.o: in function `dev_multi_pm_detach':
>> include/linux/pm_domain.h:416: multiple definition of `dev_multi_pm_detach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:416: first defined here
or1k-linux-ld: drivers/rpmsg/rpmsg_core.o: in function `dev_multi_pm_attach':
>> include/linux/pm_domain.h:396: multiple definition of `dev_multi_pm_attach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:396: first defined here
or1k-linux-ld: drivers/rpmsg/rpmsg_core.o: in function `dev_multi_pm_detach':
>> include/linux/pm_domain.h:416: multiple definition of `dev_multi_pm_detach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:416: first defined here
or1k-linux-ld: drivers/soundwire/bus_type.o: in function `dev_multi_pm_attach':
>> include/linux/pm_domain.h:396: multiple definition of `dev_multi_pm_attach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:396: first defined here
or1k-linux-ld: drivers/soundwire/bus_type.o: in function `dev_multi_pm_detach':
>> include/linux/pm_domain.h:416: multiple definition of `dev_multi_pm_detach'; drivers/tty/serdev/core.o:include/linux/pm_domain.h:416: first defined here
vim +396 include/linux/pm_domain.h
394
395 struct dev_multi_pm_domain_data *dev_multi_pm_attach(struct device *dev)
> 396 {
397 return NULL;
398 }
399
400 static inline struct device *dev_pm_domain_attach_by_id(struct device *dev,
401 unsigned int index)
402 {
403 return NULL;
404 }
405 static inline struct device *dev_pm_domain_attach_by_name(struct device *dev,
406 const char *name)
407 {
408 return NULL;
409 }
410 static inline void dev_pm_domain_detach(struct device *dev, bool power_off) {}
411 static inline int dev_pm_domain_start(struct device *dev)
412 {
413 return 0;
414 }
415
> 416 void dev_multi_pm_detach(struct dev_multi_pm_domain_data *mpd) {}
417
---
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: 25552 bytes --]
next prev parent reply other threads:[~2020-03-04 23:51 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-04 12:19 [RFC PATCH v2 0/2] Introduce multi PM domains helpers Daniel Baluta
2020-03-04 12:19 ` Daniel Baluta
2020-03-04 12:19 ` Daniel Baluta
2020-03-04 12:19 ` [RFC PATCH v2 1/2] PM / domains: " Daniel Baluta
2020-03-04 12:19 ` Daniel Baluta
2020-03-04 12:19 ` Daniel Baluta
2020-03-04 23:51 ` kbuild test robot [this message]
2020-04-21 14:00 ` Ulf Hansson
2020-04-21 14:00 ` Ulf Hansson
2020-04-21 14:00 ` Ulf Hansson
2020-04-21 14:18 ` Daniel Baluta
2020-04-21 14:18 ` Daniel Baluta
2020-04-21 14:18 ` Daniel Baluta
2020-03-04 12:19 ` [RFC PATCH v2 2/2] ASoC: SOF: Use " Daniel Baluta
2020-03-04 12:19 ` Daniel Baluta
2020-03-04 12:19 ` Daniel Baluta
2020-03-04 17:37 ` [RFC PATCH v2 0/2] Introduce " Ranjani Sridharan
2020-03-04 17:37 ` Ranjani Sridharan
2020-03-04 17:37 ` Ranjani Sridharan
2020-03-30 8:38 ` Daniel Baluta
2020-03-30 8:38 ` Daniel Baluta
2020-03-30 8:38 ` Daniel Baluta
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=202003050755.DPXCLDTT%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.