* [PATCH] iio/light/gp2ap020a00f: Use common error handling code in gp2ap020a00f_adjust_lux_mode()
@ 2017-10-26 8:00 SF Markus Elfring
2017-10-26 16:31 ` Jonathan Cameron
0 siblings, 1 reply; 3+ messages in thread
From: SF Markus Elfring @ 2017-10-26 8:00 UTC (permalink / raw)
To: linux-iio, Hartmut Knaack, Jacek Anaszewski, Jonathan Cameron,
Lars-Peter Clausen, Peter Meerwald-Stadler
Cc: LKML, kernel-janitors
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Thu, 26 Oct 2017 09:50:21 +0200
* Add jump targets so that two error messages are stored only once
at the end of this function implementation.
* Adjust condition checks.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
drivers/iio/light/gp2ap020a00f.c | 37 +++++++++++++++++--------------------
1 file changed, 17 insertions(+), 20 deletions(-)
diff --git a/drivers/iio/light/gp2ap020a00f.c b/drivers/iio/light/gp2ap020a00f.c
index 44b13fbcd093..ae29bce660ac 100644
--- a/drivers/iio/light/gp2ap020a00f.c
+++ b/drivers/iio/light/gp2ap020a00f.c
@@ -741,19 +741,13 @@ static bool gp2ap020a00f_adjust_lux_mode(struct gp2ap020a00f_data *data,
*/
err = gp2ap020a00f_write_event_threshold(data,
GP2AP020A00F_THRESH_TH, false);
- if (err < 0) {
- dev_err(&data->client->dev,
- "Clearing als threshold register failed.\n");
- return false;
- }
+ if (err)
+ goto report_clearing_failure;
err = gp2ap020a00f_write_event_threshold(data,
GP2AP020A00F_THRESH_TL, false);
- if (err < 0) {
- dev_err(&data->client->dev,
- "Clearing als threshold register failed.\n");
- return false;
- }
+ if (err)
+ goto report_clearing_failure;
/* Change lux mode */
err = regmap_update_bits(data->regmap,
@@ -793,27 +787,30 @@ static bool gp2ap020a00f_adjust_lux_mode(struct gp2ap020a00f_data *data,
if (test_bit(GP2AP020A00F_FLAG_ALS_RISING_EV, &data->flags)) {
err = gp2ap020a00f_write_event_threshold(data,
GP2AP020A00F_THRESH_TH, true);
- if (err < 0) {
- dev_err(&data->client->dev,
- "Adjusting als threshold value failed.\n");
- return false;
- }
+ if (err)
+ goto report_adjustment_failure;
}
if (test_bit(GP2AP020A00F_FLAG_ALS_FALLING_EV, &data->flags)) {
err = gp2ap020a00f_write_event_threshold(data,
GP2AP020A00F_THRESH_TL, true);
- if (err < 0) {
- dev_err(&data->client->dev,
- "Adjusting als threshold value failed.\n");
- return false;
- }
+ if (err)
+ goto report_adjustment_failure;
}
return true;
}
return false;
+
+report_clearing_failure:
+ dev_err(&data->client->dev,
+ "Clearing als threshold register failed.\n");
+ return false;
+
+report_adjustment_failure:
+ dev_err(&data->client->dev, "Adjusting als threshold value failed.\n");
+ return false;
}
static void gp2ap020a00f_output_to_lux(struct gp2ap020a00f_data *data,
--
2.14.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] iio/light/gp2ap020a00f: Use common error handling code in gp2ap020a00f_adjust_lux_mode()
2017-10-26 8:00 [PATCH] iio/light/gp2ap020a00f: Use common error handling code in gp2ap020a00f_adjust_lux_mode() SF Markus Elfring
@ 2017-10-26 16:31 ` Jonathan Cameron
2017-10-27 13:12 ` SF Markus Elfring
0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Cameron @ 2017-10-26 16:31 UTC (permalink / raw)
To: SF Markus Elfring
Cc: linux-iio, Hartmut Knaack, Jacek Anaszewski, Lars-Peter Clausen,
Peter Meerwald-Stadler, LKML, kernel-janitors
On Thu, 26 Oct 2017 10:00:21 +0200
SF Markus Elfring <elfring@users.sourceforge.net> wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Thu, 26 Oct 2017 09:50:21 +0200
>
> * Add jump targets so that two error messages are stored only once
> at the end of this function implementation.
>
> * Adjust condition checks.
>
> This issue was detected by using the Coccinelle software.
>
> Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Same issue - readability is worse than without the patch so it is always
going to be rejected.
Hence I am not going to take this or anything similar, and I doubt anyone
else in the kernel will either...
Jonathan
> ---
> drivers/iio/light/gp2ap020a00f.c | 37 +++++++++++++++++--------------------
> 1 file changed, 17 insertions(+), 20 deletions(-)
>
> diff --git a/drivers/iio/light/gp2ap020a00f.c b/drivers/iio/light/gp2ap020a00f.c
> index 44b13fbcd093..ae29bce660ac 100644
> --- a/drivers/iio/light/gp2ap020a00f.c
> +++ b/drivers/iio/light/gp2ap020a00f.c
> @@ -741,19 +741,13 @@ static bool gp2ap020a00f_adjust_lux_mode(struct gp2ap020a00f_data *data,
> */
> err = gp2ap020a00f_write_event_threshold(data,
> GP2AP020A00F_THRESH_TH, false);
> - if (err < 0) {
> - dev_err(&data->client->dev,
> - "Clearing als threshold register failed.\n");
> - return false;
> - }
> + if (err)
> + goto report_clearing_failure;
>
> err = gp2ap020a00f_write_event_threshold(data,
> GP2AP020A00F_THRESH_TL, false);
> - if (err < 0) {
> - dev_err(&data->client->dev,
> - "Clearing als threshold register failed.\n");
> - return false;
> - }
> + if (err)
> + goto report_clearing_failure;
>
> /* Change lux mode */
> err = regmap_update_bits(data->regmap,
> @@ -793,27 +787,30 @@ static bool gp2ap020a00f_adjust_lux_mode(struct gp2ap020a00f_data *data,
> if (test_bit(GP2AP020A00F_FLAG_ALS_RISING_EV, &data->flags)) {
> err = gp2ap020a00f_write_event_threshold(data,
> GP2AP020A00F_THRESH_TH, true);
> - if (err < 0) {
> - dev_err(&data->client->dev,
> - "Adjusting als threshold value failed.\n");
> - return false;
> - }
> + if (err)
> + goto report_adjustment_failure;
> }
>
> if (test_bit(GP2AP020A00F_FLAG_ALS_FALLING_EV, &data->flags)) {
> err = gp2ap020a00f_write_event_threshold(data,
> GP2AP020A00F_THRESH_TL, true);
> - if (err < 0) {
> - dev_err(&data->client->dev,
> - "Adjusting als threshold value failed.\n");
> - return false;
> - }
> + if (err)
> + goto report_adjustment_failure;
> }
>
> return true;
> }
>
> return false;
> +
> +report_clearing_failure:
> + dev_err(&data->client->dev,
> + "Clearing als threshold register failed.\n");
> + return false;
> +
> +report_adjustment_failure:
> + dev_err(&data->client->dev, "Adjusting als threshold value failed.\n");
> + return false;
> }
>
> static void gp2ap020a00f_output_to_lux(struct gp2ap020a00f_data *data,
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: iio/light/gp2ap020a00f: Use common error handling code in gp2ap020a00f_adjust_lux_mode()
2017-10-26 16:31 ` Jonathan Cameron
@ 2017-10-27 13:12 ` SF Markus Elfring
0 siblings, 0 replies; 3+ messages in thread
From: SF Markus Elfring @ 2017-10-27 13:12 UTC (permalink / raw)
To: Jonathan Cameron, linux-iio
Cc: Hartmut Knaack, Jacek Anaszewski, Lars-Peter Clausen,
Peter Meerwald-Stadler, LKML, kernel-janitors
> Same issue - readability is worse
An alternative opinion triggered the development also of this update suggestion.
> than without the patch so it is always going to be rejected.
Corresponding clarification might be needed if the change (in a direction
I propose here) will become desirable.
Can it make sense to concentrate a bit of error reporting at the end
of such a function?
Regards,
Markus
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-10-27 13:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-26 8:00 [PATCH] iio/light/gp2ap020a00f: Use common error handling code in gp2ap020a00f_adjust_lux_mode() SF Markus Elfring
2017-10-26 16:31 ` Jonathan Cameron
2017-10-27 13:12 ` SF Markus Elfring
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).