Re: [PATCH v2] iio: magnetometer: ak8974: Fix runtime PM imbalance on error in ak8974_probe()

From: Markus Elfring
Date: Sun May 31 2020 - 10:06:56 EST


> When devm_regmap_init_i2c() returns an error code, a pairing
> runtime PM usage counter decrement is needed to keep the
> counter balanced.

How do you think about to replace the word âpairingâ by âcorrespondingâ?


> For error paths after ak8974_set_power(),
> ak8974_detect() and ak8974_reset(), things are the same.

Will an other wording become more helpful than this information?


> However, When iio_triggered_buffer_setup() returns an error
> code, there will be two PM usgae counter decrements.

Please avoid two typos in this sentence.


Would you like to add the tag âFixesâ to the commit message?


â
+++ b/drivers/iio/magnetometer/ak8974.c
â
@@ -854,7 +856,6 @@ static int ak8974_probe(struct i2c_client *i2c,
â

Can a source code variant like the following make sense
for a more complete exception handling?

power_off:
ak8974_set_power(ak8974, AK8974_PWR_OFF);
put_pm:
pm_runtime_put_noidle(&i2c->dev);
pm_runtime_disable(&i2c->dev);
disable_regulator:
regulator_bulk_disable(ARRAY_SIZE(ak8974->regs), ak8974->regs);
return ret;


Regards,
Markus