From: kbuild test robot <lkp-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: kbuild-all-JC7UmRfGjtg@public.gmane.org,
Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
lgirdwood-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
Douglas Anderson
<dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>,
briannorris-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org,
javier-0uQlZySMnqxg9hUCZPvPmw@public.gmane.org,
robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
mark.rutland-5wv7dgnIgG8@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Matthias Kaehlcke <mka-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
Subject: Re: [PATCH v5 6/6] regulator: core: Prevent falling too fast
Date: Thu, 15 Sep 2016 05:35:01 +0800 [thread overview]
Message-ID: <201609150519.RDMLD9EM%fengguang.wu@intel.com> (raw)
In-Reply-To: <1473871930-99603-6-git-send-email-mka-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 3636 bytes --]
Hi Douglas,
[auto build test WARNING on regulator/for-next]
[also build test WARNING on v4.8-rc6 next-20160914]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
[Suggest to use git(>=2.9.0) format-patch --base=<commit> (or --base=auto for convenience) to record what (public, well-known) commit your patch series was built on]
[Check https://git-scm.com/docs/git-format-patch for more information]
url: https://github.com/0day-ci/linux/commits/Matthias-Kaehlcke/regulator-core-Use-local-ops-variable-in-_regulator_do_set_voltage/20160915-005730
base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next
reproduce: make htmldocs
All warnings (new ones prefixed by >>):
>> include/linux/regulator/machine.h:170: warning: No description found for parameter 'slowest_decay_rate'
>> include/linux/regulator/machine.h:170: warning: No description found for parameter 'safe_fall_percent'
vim +/slowest_decay_rate +170 include/linux/regulator/machine.h
00c877c69 Laxman Dewangan 2013-09-18 154 unsigned int enable_time;
31f8038f4 Matthias Kaehlcke 2016-09-14 155 unsigned int settle_time_up;
31f8038f4 Matthias Kaehlcke 2016-09-14 156 unsigned int settle_time_down;
171385d28 Douglas Anderson 2016-09-14 157 unsigned int slowest_decay_rate;
171385d28 Douglas Anderson 2016-09-14 158 unsigned int safe_fall_percent;
6f0b2c696 Yadwinder Singh Brar 2012-06-11 159
670666b9e Laxman Dewangan 2016-03-02 160 unsigned int active_discharge;
670666b9e Laxman Dewangan 2016-03-02 161
2e7e65ce5 Wolfram Sang 2009-09-18 162 /* constraint flags */
4c1184e85 Liam Girdwood 2008-04-30 163 unsigned always_on:1; /* regulator never off when system is on */
4c1184e85 Liam Girdwood 2008-04-30 164 unsigned boot_on:1; /* bootloader/firmware enabled regulator */
2e7e65ce5 Wolfram Sang 2009-09-18 165 unsigned apply_uV:1; /* apply uV constraint if min == max */
1653ccf4c Yadwinder Singh Brar 2013-06-29 166 unsigned ramp_disable:1; /* disable ramp delay */
57f66b788 Stephen Boyd 2015-06-11 167 unsigned soft_start:1; /* ramp voltage slowly */
23c779b9f Stephen Boyd 2015-06-11 168 unsigned pull_down:1; /* pull down resistor when regulator off */
3a003baee Stephen Boyd 2015-07-17 169 unsigned over_current_protection:1; /* auto disable on over current */
4c1184e85 Liam Girdwood 2008-04-30 @170 };
4c1184e85 Liam Girdwood 2008-04-30 171
a5766f11c Liam Girdwood 2008-10-10 172 /**
a5766f11c Liam Girdwood 2008-10-10 173 * struct regulator_consumer_supply - supply -> device mapping
a5766f11c Liam Girdwood 2008-10-10 174 *
15c08f664 Axel Lin 2012-03-29 175 * This maps a supply name to a device. Use of dev_name allows support for
15c08f664 Axel Lin 2012-03-29 176 * buses which make struct device available late such as I2C.
c8e7e4640 Mark Brown 2008-12-31 177 *
40f9244f4 Mark Brown 2009-06-17 178 * @dev_name: Result of dev_name() for the consumer.
:::::: The code at line 170 was first introduced by commit
:::::: 4c1184e85cb381121a5273ea20ad31ca3faa0a4f regulator: machine driver interface
:::::: TO: Liam Girdwood <lg-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>
:::::: CC: Liam Girdwood <lg-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 6406 bytes --]
next prev parent reply other threads:[~2016-09-14 21:35 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-14 16:52 [PATCH v5 1/6] regulator: core: Use local ops variable in _regulator_do_set_voltage() Matthias Kaehlcke
2016-09-14 16:52 ` [PATCH v5 2/6] regulator: core: Simplify error flow " Matthias Kaehlcke
[not found] ` <1473871930-99603-2-git-send-email-mka-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2016-09-16 17:40 ` Applied "regulator: core: Simplify error flow in _regulator_do_set_voltage()" to the regulator tree Mark Brown
2016-09-14 16:52 ` [PATCH v5 3/6] regulator: core: Don't skip set_voltage_time when ramp delay disabled Matthias Kaehlcke
[not found] ` <1473871930-99603-3-git-send-email-mka-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2016-09-16 17:40 ` Applied "regulator: core: Don't skip set_voltage_time when ramp delay disabled" to the regulator tree Mark Brown
2016-09-14 16:52 ` [PATCH v5 4/6] regulator: core: Add set_voltage_time op Matthias Kaehlcke
2016-09-16 17:40 ` Applied "regulator: core: Add set_voltage_time op" to the regulator tree Mark Brown
[not found] ` <1473871930-99603-1-git-send-email-mka-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2016-09-14 16:52 ` [PATCH v5 5/6] regulator: core: Add support for a fixed delay after voltage changes Matthias Kaehlcke
2016-09-23 15:14 ` Rob Herring
2016-09-14 16:52 ` [PATCH v5 6/6] regulator: core: Prevent falling too fast Matthias Kaehlcke
[not found] ` <1473871930-99603-6-git-send-email-mka-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2016-09-14 21:35 ` kbuild test robot [this message]
2016-09-23 15:16 ` Rob Herring
2016-09-14 17:16 ` Applied "regulator: core: Use local ops variable in _regulator_do_set_voltage()" to the regulator tree Mark Brown
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=201609150519.RDMLD9EM%fengguang.wu@intel.com \
--to=lkp-ral2jqcrhueavxtiumwx3w@public.gmane.org \
--cc=briannorris-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org \
--cc=broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org \
--cc=javier-0uQlZySMnqxg9hUCZPvPmw@public.gmane.org \
--cc=kbuild-all-JC7UmRfGjtg@public.gmane.org \
--cc=lgirdwood-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
--cc=mka-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org \
--cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).