All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [RFC PATCH 4/7] regulator: add property parsing and callbacks to set protection limits
Date: Thu, 11 Feb 2021 22:11:14 +0800	[thread overview]
Message-ID: <202102112223.KgAlIqCc-lkp@intel.com> (raw)
In-Reply-To: <19d533dbc99d610c40b9023dba7da7a9eaadbe3d.1613042245.git.matti.vaittinen@fi.rohmeurope.com>

[-- Attachment #1: Type: text/plain, Size: 3240 bytes --]

Hi Matti,

[FYI, it's a private test report for your RFC patch.]
[auto build test ERROR on regulator/for-next]
[also build test ERROR on next-20210211]
[cannot apply to v5.11-rc7]
[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]

url:    https://github.com/0day-ci/linux/commits/Matti-Vaittinen/Extend-regulator-notification-support/20210211-204336
base:   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next
config: i386-randconfig-s002-20210211 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce:
        # apt-get install sparse
        # sparse version: v0.6.3-215-g0fb77bb6-dirty
        # https://github.com/0day-ci/linux/commit/260da0e9dac7ec0544df299c02d4051341506bf8
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Matti-Vaittinen/Extend-regulator-notification-support/20210211-204336
        git checkout 260da0e9dac7ec0544df299c02d4051341506bf8
        # save the attached .config to linux build tree
        make W=1 C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' ARCH=i386 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/regulator/qcom_spmi-regulator.c:1346:33: error: initialization of 'int (*)(struct regulator_dev *, int,  int,  bool)' {aka 'int (*)(struct regulator_dev *, int,  int,  _Bool)'} from incompatible pointer type 'int (*)(struct regulator_dev *)' [-Werror=incompatible-pointer-types]
    1346 |  .set_over_current_protection = spmi_regulator_vs_ocp,
         |                                 ^~~~~~~~~~~~~~~~~~~~~
   drivers/regulator/qcom_spmi-regulator.c:1346:33: note: (near initialization for 'spmi_vs_ops.set_over_current_protection')
   cc1: some warnings being treated as errors


vim +1346 drivers/regulator/qcom_spmi-regulator.c

e92a4047419c80 Stephen Boyd     2015-06-12  1339  
3b619e3e2d1a89 Rikard Falkeborn 2020-06-29  1340  static const struct regulator_ops spmi_vs_ops = {
e92a4047419c80 Stephen Boyd     2015-06-12  1341  	.enable			= spmi_regulator_vs_enable,
9d4853322ffcc7 Axel Lin         2017-11-29  1342  	.disable		= regulator_disable_regmap,
9d4853322ffcc7 Axel Lin         2017-11-29  1343  	.is_enabled		= regulator_is_enabled_regmap,
e92a4047419c80 Stephen Boyd     2015-06-12  1344  	.set_pull_down		= spmi_regulator_common_set_pull_down,
e92a4047419c80 Stephen Boyd     2015-06-12  1345  	.set_soft_start		= spmi_regulator_common_set_soft_start,
e2adfacde619d8 Stephen Boyd     2015-07-17 @1346  	.set_over_current_protection = spmi_regulator_vs_ocp,
919163f6362ac2 Stephen Boyd     2016-06-25  1347  	.set_mode		= spmi_regulator_common_set_mode,
919163f6362ac2 Stephen Boyd     2016-06-25  1348  	.get_mode		= spmi_regulator_common_get_mode,
e92a4047419c80 Stephen Boyd     2015-06-12  1349  };
e92a4047419c80 Stephen Boyd     2015-06-12  1350  

---
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: 52834 bytes --]

  reply	other threads:[~2021-02-11 14:11 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-11 12:33 [RFC PATCH 0/7] Extend regulator notification support Matti Vaittinen
2021-02-11 12:34 ` [RFC PATCH 1/7] dt_bindings: Add protection limit properties Matti Vaittinen
2021-03-05 19:30   ` Rob Herring
2021-03-08  5:34     ` Vaittinen, Matti
2021-02-11 12:34 ` [RFC PATCH 2/7] regulator: add warning flags Matti Vaittinen
2021-02-11 12:35 ` [RFC PATCH 3/7] regulator: IRQ based event/error notification helpers Matti Vaittinen
2021-02-11 14:40   ` kernel test robot
2021-02-11 14:40   ` [RFC PATCH] regulator: dev_delayed_work_autocancel() can be static kernel test robot
2021-02-12  9:33   ` [RFC PATCH 3/7] regulator: IRQ based event/error notification helpers Vaittinen, Matti
2021-02-12 13:56     ` Mark Brown
2021-02-15 10:25   ` Vaittinen, Matti
2021-02-15 11:11   ` Dan Carpenter
2021-02-15 11:11     ` Dan Carpenter
2021-02-11 12:35 ` [RFC PATCH 4/7] regulator: add property parsing and callbacks to set protection limits Matti Vaittinen
2021-02-11 14:11   ` kernel test robot [this message]
2021-02-12  7:29   ` Matti Vaittinen
2021-02-11 12:35 ` [RFC PATCH 5/7] dt-bindings: regulator: bd9576 add FET ON-resistance for OCW Matti Vaittinen
2021-02-11 14:56   ` Rob Herring
2021-02-17 21:34   ` Rob Herring
2021-02-18  6:15     ` Vaittinen, Matti
2021-02-11 12:36 ` [RFC PATCH 6/7] regulator: bd9576: Support error reporting Matti Vaittinen
2021-02-11 12:36 ` [RFC PATCH 7/7] regulator: bd9576: Fix the driver name in id table Matti Vaittinen

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=202102112223.KgAlIqCc-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.