From: kernel test robot <lkp@intel.com>
To: Gatien Chevallier <gatien.chevallier@foss.st.com>,
Olivia Mackall <olivia@selenic.com>,
Herbert Xu <herbert@gondor.apana.org.au>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Maxime Coquelin <mcoquelin.stm32@gmail.com>,
Alexandre Torgue <alexandre.torgue@foss.st.com>
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
Lionel Debieve <lionel.debieve@foss.st.com>,
linux-crypto@vger.kernel.org, devicetree@vger.kernel.org,
linux-stm32@st-md-mailman.stormreply.com,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org,
Gatien Chevallier <gatien.chevallier@foss.st.com>
Subject: Re: [PATCH v2 09/10] hwrng: stm32 - rework power management sequences
Date: Tue, 12 Sep 2023 20:45:31 +0800 [thread overview]
Message-ID: <202309122017.GsJspucF-lkp@intel.com> (raw)
In-Reply-To: <20230911120203.774632-10-gatien.chevallier@foss.st.com>
Hi Gatien,
kernel test robot noticed the following build warnings:
[auto build test WARNING on atorgue-stm32/stm32-next]
[also build test WARNING on robh/for-next herbert-crypto-2.6/master herbert-cryptodev-2.6/master linus/master v6.6-rc1 next-20230912]
[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/Gatien-Chevallier/dt-bindings-rng-introduce-new-compatible-for-STM32MP13x/20230912-051851
base: https://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
patch link: https://lore.kernel.org/r/20230911120203.774632-10-gatien.chevallier%40foss.st.com
patch subject: [PATCH v2 09/10] hwrng: stm32 - rework power management sequences
config: arm64-randconfig-r003-20230912 (https://download.01.org/0day-ci/archive/20230912/202309122017.GsJspucF-lkp@intel.com/config)
compiler: clang version 17.0.0 (https://github.com/llvm/llvm-project.git 4a5ac14ee968ff0ad5d2cc1ffa0299048db4c88a)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20230912/202309122017.GsJspucF-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202309122017.GsJspucF-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/char/hw_random/stm32-rng.c:472:21: warning: attribute declaration must precede definition [-Wignored-attributes]
472 | static const struct __maybe_unused dev_pm_ops stm32_rng_pm_ops = {
| ^
include/linux/compiler_attributes.h:344:56: note: expanded from macro '__maybe_unused'
344 | #define __maybe_unused __attribute__((__unused__))
| ^
include/linux/pm.h:286:8: note: previous definition is here
286 | struct dev_pm_ops {
| ^
1 warning generated.
vim +472 drivers/char/hw_random/stm32-rng.c
471
> 472 static const struct __maybe_unused dev_pm_ops stm32_rng_pm_ops = {
473 SET_RUNTIME_PM_OPS(stm32_rng_runtime_suspend,
474 stm32_rng_runtime_resume, NULL)
475 SET_SYSTEM_SLEEP_PM_OPS(stm32_rng_suspend,
476 stm32_rng_resume)
477 };
478
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Gatien Chevallier <gatien.chevallier@foss.st.com>,
Olivia Mackall <olivia@selenic.com>,
Herbert Xu <herbert@gondor.apana.org.au>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Maxime Coquelin <mcoquelin.stm32@gmail.com>,
Alexandre Torgue <alexandre.torgue@foss.st.com>
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
Lionel Debieve <lionel.debieve@foss.st.com>,
linux-crypto@vger.kernel.org, devicetree@vger.kernel.org,
linux-stm32@st-md-mailman.stormreply.com,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org,
Gatien Chevallier <gatien.chevallier@foss.st.com>
Subject: Re: [PATCH v2 09/10] hwrng: stm32 - rework power management sequences
Date: Tue, 12 Sep 2023 20:45:31 +0800 [thread overview]
Message-ID: <202309122017.GsJspucF-lkp@intel.com> (raw)
In-Reply-To: <20230911120203.774632-10-gatien.chevallier@foss.st.com>
Hi Gatien,
kernel test robot noticed the following build warnings:
[auto build test WARNING on atorgue-stm32/stm32-next]
[also build test WARNING on robh/for-next herbert-crypto-2.6/master herbert-cryptodev-2.6/master linus/master v6.6-rc1 next-20230912]
[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/Gatien-Chevallier/dt-bindings-rng-introduce-new-compatible-for-STM32MP13x/20230912-051851
base: https://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
patch link: https://lore.kernel.org/r/20230911120203.774632-10-gatien.chevallier%40foss.st.com
patch subject: [PATCH v2 09/10] hwrng: stm32 - rework power management sequences
config: arm64-randconfig-r003-20230912 (https://download.01.org/0day-ci/archive/20230912/202309122017.GsJspucF-lkp@intel.com/config)
compiler: clang version 17.0.0 (https://github.com/llvm/llvm-project.git 4a5ac14ee968ff0ad5d2cc1ffa0299048db4c88a)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20230912/202309122017.GsJspucF-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202309122017.GsJspucF-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/char/hw_random/stm32-rng.c:472:21: warning: attribute declaration must precede definition [-Wignored-attributes]
472 | static const struct __maybe_unused dev_pm_ops stm32_rng_pm_ops = {
| ^
include/linux/compiler_attributes.h:344:56: note: expanded from macro '__maybe_unused'
344 | #define __maybe_unused __attribute__((__unused__))
| ^
include/linux/pm.h:286:8: note: previous definition is here
286 | struct dev_pm_ops {
| ^
1 warning generated.
vim +472 drivers/char/hw_random/stm32-rng.c
471
> 472 static const struct __maybe_unused dev_pm_ops stm32_rng_pm_ops = {
473 SET_RUNTIME_PM_OPS(stm32_rng_runtime_suspend,
474 stm32_rng_runtime_resume, NULL)
475 SET_SYSTEM_SLEEP_PM_OPS(stm32_rng_suspend,
476 stm32_rng_resume)
477 };
478
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2023-09-12 12:45 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-11 12:01 [PATCH v2 00/10] hwrng: stm32: support STM32MP13x platforms Gatien Chevallier
2023-09-11 12:01 ` Gatien Chevallier
2023-09-11 12:01 ` [PATCH v2 01/10] dt-bindings: rng: introduce new compatible for STM32MP13x Gatien Chevallier
2023-09-11 12:01 ` Gatien Chevallier
2023-09-12 14:29 ` Rob Herring
2023-09-12 14:29 ` Rob Herring
2023-09-11 12:01 ` [PATCH v2 02/10] hwrng: stm32 - use devm_platform_get_and_ioremap_resource() API Gatien Chevallier
2023-09-11 12:01 ` Gatien Chevallier
2023-09-11 12:01 ` [PATCH v2 03/10] hwrng: stm32 - implement STM32MP13x support Gatien Chevallier
2023-09-11 12:01 ` Gatien Chevallier
2023-09-11 12:01 ` [PATCH v2 04/10] hwrng: stm32 - implement error concealment Gatien Chevallier
2023-09-11 12:01 ` Gatien Chevallier
2023-09-11 12:01 ` [PATCH v2 05/10] hwrng: stm32 - rework error handling in stm32_rng_read() Gatien Chevallier
2023-09-11 12:01 ` Gatien Chevallier
2023-09-11 12:01 ` [PATCH v2 06/10] hwrng: stm32 - restrain RNG noise source clock Gatien Chevallier
2023-09-11 12:01 ` Gatien Chevallier
2023-09-11 12:02 ` [PATCH v2 07/10] dt-bindings: rng: add st,rng-lock-conf Gatien Chevallier
2023-09-11 12:02 ` Gatien Chevallier
2023-09-12 14:38 ` Krzysztof Kozlowski
2023-09-12 14:38 ` Krzysztof Kozlowski
2023-09-13 7:48 ` Gatien CHEVALLIER
2023-09-13 7:48 ` Gatien CHEVALLIER
2023-09-13 7:58 ` Krzysztof Kozlowski
2023-09-13 7:58 ` Krzysztof Kozlowski
2023-09-11 12:02 ` [PATCH v2 08/10] hwrng: stm32 - support RNG configuration locking mechanism Gatien Chevallier
2023-09-11 12:02 ` Gatien Chevallier
2023-09-11 12:02 ` [PATCH v2 09/10] hwrng: stm32 - rework power management sequences Gatien Chevallier
2023-09-11 12:02 ` Gatien Chevallier
2023-09-12 12:45 ` kernel test robot [this message]
2023-09-12 12:45 ` kernel test robot
2023-09-11 12:02 ` [PATCH v2 10/10] ARM: dts: stm32: add RNG node for STM32MP13x platforms Gatien Chevallier
2023-09-11 12:02 ` Gatien Chevallier
2023-09-12 14:38 ` Krzysztof Kozlowski
2023-09-12 14:38 ` Krzysztof Kozlowski
2023-09-13 7:52 ` Gatien CHEVALLIER
2023-09-13 7:52 ` Gatien CHEVALLIER
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=202309122017.GsJspucF-lkp@intel.com \
--to=lkp@intel.com \
--cc=alexandre.torgue@foss.st.com \
--cc=devicetree@vger.kernel.org \
--cc=gatien.chevallier@foss.st.com \
--cc=herbert@gondor.apana.org.au \
--cc=krzk@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=lionel.debieve@foss.st.com \
--cc=llvm@lists.linux.dev \
--cc=mcoquelin.stm32@gmail.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=olivia@selenic.com \
--cc=robh+dt@kernel.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.