[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <48b34d35-8c41-d25b-0cb7-6257b37c5a44@users.sourceforge.net>
Date: Mon, 30 Oct 2017 21:50:10 +0100
From: SF Markus Elfring <elfring@...rs.sourceforge.net>
To: linux-pm@...r.kernel.org,
Pali Rohár <pali.rohar@...il.com>,
Sebastian Reichel <sre@...nel.org>
Cc: LKML <linux-kernel@...r.kernel.org>,
kernel-janitors@...r.kernel.org
Subject: [PATCH] bq2415x_charger: Use common error handling code in
bq2415x_timer_work()
From: Markus Elfring <elfring@...rs.sourceforge.net>
Date: Mon, 30 Oct 2017 21:45:09 +0100
Add a jump target so that a bit of exception handling can be better reused
at the end of this function.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@...rs.sourceforge.net>
---
drivers/power/supply/bq2415x_charger.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/power/supply/bq2415x_charger.c b/drivers/power/supply/bq2415x_charger.c
index c4770a94cc8e..8385e02e1634 100644
--- a/drivers/power/supply/bq2415x_charger.c
+++ b/drivers/power/supply/bq2415x_charger.c
@@ -914,16 +914,12 @@ static void bq2415x_timer_work(struct work_struct *work)
}
boost = bq2415x_exec_command(bq, BQ2415X_BOOST_MODE_STATUS);
- if (boost < 0) {
- bq2415x_timer_error(bq, "Unknown error");
- return;
- }
+ if (boost < 0)
+ goto report_timer_error;
error = bq2415x_exec_command(bq, BQ2415X_FAULT_STATUS);
- if (error < 0) {
- bq2415x_timer_error(bq, "Unknown error");
- return;
- }
+ if (error < 0)
+ goto report_timer_error;
if (boost) {
switch (error) {
@@ -992,6 +988,10 @@ static void bq2415x_timer_work(struct work_struct *work)
}
schedule_delayed_work(&bq->work, BQ2415X_TIMER_TIMEOUT * HZ);
+ return;
+
+report_timer_error:
+ bq2415x_timer_error(bq, "Unknown error");
}
/**** power supply interface code ****/
--
2.14.3
Powered by blists - more mailing lists