From: kbuild test robot <fengguang.wu@intel.com>
To: "Angus Ainslie (Purism)" <angus@akkea.ca>
Cc: kbuild-all@01.org, Sebastian Reichel <sre@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH] power: supply: bq25890_charger: fix semicolon.cocci warnings
Date: Mon, 17 Sep 2018 10:23:20 +0800 [thread overview]
Message-ID: <20180917022320.GA43295@lkp-ib04.lkp.intel.com> (raw)
In-Reply-To: <201809171037.IF98pmY7%fengguang.wu@intel.com>
From: kbuild test robot <fengguang.wu@intel.com>
drivers/power/supply/bq25890_charger.c:614:2-3: Unneeded semicolon
drivers/power/supply/bq25890_charger.c:621:2-3: Unneeded semicolon
drivers/power/supply/bq25890_charger.c:630:3-4: Unneeded semicolon
drivers/power/supply/bq25890_charger.c:638:2-3: Unneeded semicolon
drivers/power/supply/bq25890_charger.c:644:2-3: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Fixes: 9d9ae3414d1b ("power: supply: bq25890_charger: Add debugging output of failed initialization")
CC: Angus Ainslie (Purism) <angus@akkea.ca>
Signed-off-by: kbuild test robot <fengguang.wu@intel.com>
---
tree: https://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git for-next
head: cb90a2c6f77fe9b43d1e3f759bb2f13fe7fa1811
commit: 9d9ae3414d1bb655d8db7079e56b0f51e7cd07f0 [4/13] power: supply: bq25890_charger: Add debugging output of failed initialization
bq25890_charger.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
--- a/drivers/power/supply/bq25890_charger.c
+++ b/drivers/power/supply/bq25890_charger.c
@@ -611,14 +611,14 @@ static int bq25890_hw_init(struct bq2589
if (ret < 0) {
dev_dbg(bq->dev, "Reset failed %d\n", ret);
return ret;
- };
+ }
/* disable watchdog */
ret = bq25890_field_write(bq, F_WD, 0);
if (ret < 0) {
dev_dbg(bq->dev, "Disabling watchdog failed %d\n", ret);
return ret;
- };
+ }
/* initialize currents/voltages and other parameters */
for (i = 0; i < ARRAY_SIZE(init_data); i++) {
@@ -627,7 +627,7 @@ static int bq25890_hw_init(struct bq2589
if (ret < 0) {
dev_dbg(bq->dev, "Writing init data failed %d\n", ret);
return ret;
- };
+ }
}
/* Configure ADC for continuous conversions. This does not enable it. */
@@ -635,13 +635,13 @@ static int bq25890_hw_init(struct bq2589
if (ret < 0) {
dev_dbg(bq->dev, "Config ADC failed %d\n", ret);
return ret;
- };
+ }
ret = bq25890_get_chip_state(bq, &state);
if (ret < 0) {
dev_dbg(bq->dev, "Get state failed %d\n", ret);
return ret;
- };
+ }
mutex_lock(&bq->lock);
bq->state = state;
next parent reply other threads:[~2018-09-17 2:23 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <201809171037.IF98pmY7%fengguang.wu@intel.com>
2018-09-17 2:23 ` kbuild test robot [this message]
2018-09-20 0:09 ` [PATCH] power: supply: bq25890_charger: fix semicolon.cocci warnings Sebastian Reichel
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=20180917022320.GA43295@lkp-ib04.lkp.intel.com \
--to=fengguang.wu@intel.com \
--cc=angus@akkea.ca \
--cc=kbuild-all@01.org \
--cc=krzk@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=sre@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 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).