From: kbuild test robot <lkp@intel.com>
To: Chen Feng <puck.chen@hisilicon.com>
Cc: kbuild-all@01.org, w.f@huawei.com, sameo@linux.intel.com,
lee.jones@linaro.org, linux-kernel@vger.kernel.org,
lgirdwood@gmail.com, broonie@kernel.org, robh+dt@kernel.org,
pawel.moll@arm.com, mark.rutland@arm.com,
ijc+devicetree@hellion.org.uk, galak@codeaurora.org,
puck.chen@hisilicon.com, joro@8bytes.org,
iommu@lists.linux-foundation.org, haojian.zhuang@linaro.org,
devicetree@vger.kernel.org, xuwei5@hisilicon.com,
xuyiping@hisilicon.com, kong.kongxinwei@hisilicon.com,
z.liuxinliang@hisilicon.com, yudongbin@hisilicon.com,
weidong2@hisilicon.com, saberlily.xia@hisilicon.com,
haojian.zhuang@outlook.com, leo.yan@linaro.org,
linuxarm@huawei.com, dan.zhao@hisilicon.com,
peter.panshilin@hisilicon.com, qijiwen@hisilicon.com
Subject: Re: [PATCH 6/7] regulator: hisilicon: Add hi655x pmic voltage regulator driver
Date: Fri, 6 Nov 2015 19:47:21 +0800 [thread overview]
Message-ID: <201511061928.lSImC8GL%fengguang.wu@intel.com> (raw)
In-Reply-To: <1446730488-31930-7-git-send-email-puck.chen@hisilicon.com>
[-- Attachment #1: Type: text/plain, Size: 3089 bytes --]
Hi Chen,
[auto build test ERROR on regulator/for-next]
[also build test ERROR on v4.3 next-20151106]
url: https://github.com/0day-ci/linux/commits/Chen-Feng/Add-Support-for-Hi6220-PMIC-Hi6553-MFD-Core/20151105-215603
base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next
config: arm-allmodconfig (attached as .config)
reproduce:
wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
make.cross ARCH=arm
All error/warnings (new ones prefixed by >>):
drivers/regulator/hi6220-mtcmos.c: In function 'hi6220_mtcmos_enable':
>> drivers/regulator/hi6220-mtcmos.c:105:2: error: expected ';' before 'return'
return ret;
^
>> drivers/regulator/hi6220-mtcmos.c:106:1: warning: no return statement in function returning non-void [-Wreturn-type]
}
^
--
drivers/regulator/hi655x-regulator.c: In function 'hi655x_disable':
>> drivers/regulator/hi655x-regulator.c:65:2: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
struct hi655x_regulator_ctrl_regs *ctrl_regs = ®ulator->ctrl_regs;
^
drivers/regulator/hi655x-regulator.c: In function 'hi655x_get_voltage':
drivers/regulator/hi655x-regulator.c:81:2: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
struct hi655x_regulator_vset_regs *vset_regs = ®ulator->vset_regs;
^
drivers/regulator/hi655x-regulator.c: In function 'hi655x_set_voltage':
drivers/regulator/hi655x-regulator.c:101:2: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
struct hi655x_regulator_vset_regs *vset_regs = ®ulator->vset_regs;
^
drivers/regulator/hi655x-regulator.c: In function 'hi655x_regulator_probe':
drivers/regulator/hi655x-regulator.c:189:6: warning: unused variable 'ret' [-Wunused-variable]
int ret = 0;
^
vim +65 drivers/regulator/hi655x-regulator.c
49 struct hi655x_regulator_ctrl_regs *ctrl_regs = ®ulator->ctrl_regs;
50
51 ret = regmap_update_bits(rdev->regmap, ctrl_regs->enable_reg,
52 regulator->ctrl_mask, regulator->ctrl_mask);
53 return ret;
54 }
55
56 static int hi655x_disable(struct regulator_dev *rdev)
57 {
58 int ret = 0;
59 struct hi655x_regulator *regulator = rdev_get_drvdata(rdev);
60
61 if (!regulator) {
62 pr_err("get driver data error!\n");
63 return -ENODEV;
64 }
> 65 struct hi655x_regulator_ctrl_regs *ctrl_regs = ®ulator->ctrl_regs;
66
67 ret = regmap_update_bits(rdev->regmap, ctrl_regs->disable_reg,
68 regulator->ctrl_mask, regulator->ctrl_mask);
69 return ret;
70 }
71
72 static int hi655x_get_voltage(struct regulator_dev *rdev)
73 {
---
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: 53757 bytes --]
next prev parent reply other threads:[~2015-11-06 11:47 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-05 13:34 [PATCH 0/7] Add Support for Hi6220 PMIC Hi6553 MFD Core Chen Feng
2015-11-05 13:34 ` [PATCH 1/7] doc:bindings:Add document for mfd hi665x PMIC Chen Feng
2015-11-05 14:04 ` Mark Brown
2015-11-05 13:34 ` [PATCH 2/7] doc:bindings:Document for mtcmos regulator on hi6220 SoC Chen Feng
2015-11-05 14:14 ` Mark Brown
2015-11-05 20:31 ` Rob Herring
2015-11-05 13:34 ` [PATCH 3/7] doc:bindings:Document for hi655x pmic driver Chen Feng
2015-11-05 14:23 ` Mark Brown
2015-11-05 13:34 ` [PATCH 4/7] mfd: hi655x: Add hi665x " Chen Feng
2015-11-05 14:30 ` Mark Brown
2015-11-06 20:21 ` Andy Shevchenko
2015-11-05 13:34 ` [PATCH 5/7] regulator: add driver for mtcmos voltage regulator on hi6220 SoC Chen Feng
2015-11-05 14:44 ` Mark Brown
2015-11-05 13:34 ` [PATCH 6/7] regulator: hisilicon: Add hi655x pmic voltage regulator driver Chen Feng
2015-11-05 14:52 ` Mark Brown
2015-11-06 11:47 ` kbuild test robot [this message]
2015-11-06 21:29 ` Andy Shevchenko
2015-11-05 13:34 ` [PATCH 7/7] arm64: dts: Add mtcmos and pmic node for hi6220 HiKey board Chen Feng
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=201511061928.lSImC8GL%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=broonie@kernel.org \
--cc=dan.zhao@hisilicon.com \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=haojian.zhuang@linaro.org \
--cc=haojian.zhuang@outlook.com \
--cc=ijc+devicetree@hellion.org.uk \
--cc=iommu@lists.linux-foundation.org \
--cc=joro@8bytes.org \
--cc=kbuild-all@01.org \
--cc=kong.kongxinwei@hisilicon.com \
--cc=lee.jones@linaro.org \
--cc=leo.yan@linaro.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxarm@huawei.com \
--cc=mark.rutland@arm.com \
--cc=pawel.moll@arm.com \
--cc=peter.panshilin@hisilicon.com \
--cc=puck.chen@hisilicon.com \
--cc=qijiwen@hisilicon.com \
--cc=robh+dt@kernel.org \
--cc=saberlily.xia@hisilicon.com \
--cc=sameo@linux.intel.com \
--cc=w.f@huawei.com \
--cc=weidong2@hisilicon.com \
--cc=xuwei5@hisilicon.com \
--cc=xuyiping@hisilicon.com \
--cc=yudongbin@hisilicon.com \
--cc=z.liuxinliang@hisilicon.com \
/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