public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4] ACPI: pmic: Replace mutex_lock/unlock() with guard()/scoped_guard()
@ 2026-04-29  1:24 Maxwell Doose
  2026-04-29  9:55 ` Andy Shevchenko
  0 siblings, 1 reply; 4+ messages in thread
From: Maxwell Doose @ 2026-04-29  1:24 UTC (permalink / raw)
  To: rafael, lenb; +Cc: andy, westeri, linux-acpi, linux-kernel

Replace mutex_lock() and unlock() macros with the newer guard() and
scoped_guard() macros. This will help modernize and clean the code.

In intel_soc_pmic_exec_mipi_pmic_seq_element(): While at it, remove
now redundant "ret" variable.

Signed-off-by: Maxwell Doose <m32285159@gmail.com>
---
 v2:
 - Refactored control flow in certain functions as suggested by Andy.
 - Indent code in scoped_guard block as suggested by Andy.
 - Fix parameter list alignment issues that I found while making this
   v2.

 v3:
 - Fixed guard(mutex)() and scoped_guard() syntax.
 - Added some logical and style changes per Andy's request. The
   requested changes and my personal thoughts can be found at
   https://lore.kernel.org/linux-acpi/ae8QBnSs9fYvkv_i@ashevche-desk.local/

 v4:
 - Added else keyword to if statement in
   intel_soc_pmic_exec_mipi_pmic_seq_element() per Andy's request.

 drivers/acpi/pmic/intel_pmic.c | 60 ++++++++++++++--------------------
 1 file changed, 25 insertions(+), 35 deletions(-)

diff --git a/drivers/acpi/pmic/intel_pmic.c b/drivers/acpi/pmic/intel_pmic.c
index 134e9ca8eaa2..594c07211a8b 100644
--- a/drivers/acpi/pmic/intel_pmic.c
+++ b/drivers/acpi/pmic/intel_pmic.c
@@ -67,14 +67,12 @@ static acpi_status intel_pmic_power_handler(u32 function,
 	if (result == -ENOENT)
 		return AE_BAD_PARAMETER;
 
-	mutex_lock(&opregion->lock);
+	guard(mutex)(&opregion->lock);
 
 	result = function == ACPI_READ ?
 		d->get_power(regmap, reg, bit, value64) :
 		d->update_power(regmap, reg, bit, *value64 == 1);
 
-	mutex_unlock(&opregion->lock);
-
 	return result ? AE_ERROR : AE_OK;
 }
 
@@ -182,19 +180,16 @@ static acpi_status intel_pmic_thermal_handler(u32 function,
 	if (result == -ENOENT)
 		return AE_BAD_PARAMETER;
 
-	mutex_lock(&opregion->lock);
-
-	if (pmic_thermal_is_temp(address))
-		result = pmic_thermal_temp(opregion, reg, function, value64);
-	else if (pmic_thermal_is_aux(address))
-		result = pmic_thermal_aux(opregion, reg, function, value64);
-	else if (pmic_thermal_is_pen(address))
-		result = pmic_thermal_pen(opregion, reg, bit,
-						function, value64);
-	else
-		result = -EINVAL;
-
-	mutex_unlock(&opregion->lock);
+	scoped_guard(mutex, &opregion->lock) {
+		if (pmic_thermal_is_temp(address))
+			result = pmic_thermal_temp(opregion, reg, function, value64);
+		else if (pmic_thermal_is_aux(address))
+			result = pmic_thermal_aux(opregion, reg, function, value64);
+		else if (pmic_thermal_is_pen(address))
+			result = pmic_thermal_pen(opregion, reg, bit, function, value64);
+		else
+			result = -EINVAL;
+	}
 
 	if (result < 0) {
 		if (result == -EINVAL)
@@ -345,7 +340,6 @@ int intel_soc_pmic_exec_mipi_pmic_seq_element(u16 i2c_address, u32 reg_address,
 					      u32 value, u32 mask)
 {
 	const struct intel_pmic_opregion_data *d;
-	int ret;
 
 	if (!intel_pmic_opregion) {
 		pr_warn("%s: No PMIC registered\n", __func__);
@@ -354,30 +348,26 @@ int intel_soc_pmic_exec_mipi_pmic_seq_element(u16 i2c_address, u32 reg_address,
 
 	d = intel_pmic_opregion->data;
 
-	mutex_lock(&intel_pmic_opregion->lock);
+	guard(mutex)(&intel_pmic_opregion->lock);
 
 	if (d->exec_mipi_pmic_seq_element) {
-		ret = d->exec_mipi_pmic_seq_element(intel_pmic_opregion->regmap,
-						    i2c_address, reg_address,
-						    value, mask);
+		return d->exec_mipi_pmic_seq_element(intel_pmic_opregion->regmap,
+						     i2c_address, reg_address,
+						     value, mask);
 	} else if (d->pmic_i2c_address) {
-		if (i2c_address == d->pmic_i2c_address) {
-			ret = regmap_update_bits(intel_pmic_opregion->regmap,
-						 reg_address, mask, value);
-		} else {
+		if (i2c_address != d->pmic_i2c_address) {
 			pr_err("%s: Unexpected i2c-addr: 0x%02x (reg-addr 0x%x value 0x%x mask 0x%x)\n",
-			       __func__, i2c_address, reg_address, value, mask);
-			ret = -ENXIO;
+				__func__, i2c_address, reg_address, value, mask);
+			return -ENXIO;
 		}
-	} else {
-		pr_warn("%s: Not implemented\n", __func__);
-		pr_warn("%s: i2c-addr: 0x%x reg-addr 0x%x value 0x%x mask 0x%x\n",
-			__func__, i2c_address, reg_address, value, mask);
-		ret = -EOPNOTSUPP;
-	}
 
-	mutex_unlock(&intel_pmic_opregion->lock);
+		return regmap_update_bits(intel_pmic_opregion->regmap,
+					  reg_address, mask, value);
+	}
 
-	return ret;
+	pr_warn("%s: Not implemented\n", __func__);
+	pr_warn("%s: i2c-addr: 0x%x reg-addr 0x%x value 0x%x mask 0x%x\n",
+		__func__, i2c_address, reg_address, value, mask);
+	return -EOPNOTSUPP;
 }
 EXPORT_SYMBOL_GPL(intel_soc_pmic_exec_mipi_pmic_seq_element);
-- 
2.53.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v4] ACPI: pmic: Replace mutex_lock/unlock() with guard()/scoped_guard()
  2026-04-29  1:24 [PATCH v4] ACPI: pmic: Replace mutex_lock/unlock() with guard()/scoped_guard() Maxwell Doose
@ 2026-04-29  9:55 ` Andy Shevchenko
  2026-04-29 13:14   ` Maxwell Doose
  0 siblings, 1 reply; 4+ messages in thread
From: Andy Shevchenko @ 2026-04-29  9:55 UTC (permalink / raw)
  To: Maxwell Doose; +Cc: rafael, lenb, andy, westeri, linux-acpi, linux-kernel

On Tue, Apr 28, 2026 at 08:24:32PM -0500, Maxwell Doose wrote:

...

>  v4:
>  - Added else keyword to if statement in
>    intel_soc_pmic_exec_mipi_pmic_seq_element() per Andy's request.

Nope, sorry if I was not clear. The idea is to drop 'else'.
Also make the patch less invasive.

...

> -			       __func__, i2c_address, reg_address, value, mask);

> +				__func__, i2c_address, reg_address, value, mask);

Still a stray change.

...

It should be

	int ret; // also left untouched, drop that from commit message as well

        if (d->exec_mipi_pmic_seq_element) {
		// the below if-else-if just should be left untouched.
		if (i2c_address == d->pmic_i2c_address) {
			...
		} else {
			...
		}

		return ret;
	}

	if (d->pmic_i2c_address) {
	}

	...warnings...
	return -EOPNOTSUPP;

We may get a second patch for deeper refactoring later on.

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v4] ACPI: pmic: Replace mutex_lock/unlock() with guard()/scoped_guard()
  2026-04-29  9:55 ` Andy Shevchenko
@ 2026-04-29 13:14   ` Maxwell Doose
  2026-04-29 13:31     ` Andy Shevchenko
  0 siblings, 1 reply; 4+ messages in thread
From: Maxwell Doose @ 2026-04-29 13:14 UTC (permalink / raw)
  To: Andy Shevchenko; +Cc: rafael, lenb, andy, westeri, linux-acpi, linux-kernel

On Wed, Apr 29, 2026 at 4:55 AM Andy Shevchenko
<andriy.shevchenko@intel.com> wrote:
>
> On Tue, Apr 28, 2026 at 08:24:32PM -0500, Maxwell Doose wrote:
>
> ...
>
> >  v4:
> >  - Added else keyword to if statement in
> >    intel_soc_pmic_exec_mipi_pmic_seq_element() per Andy's request.
>
> Nope, sorry if I was not clear. The idea is to drop 'else'.
> Also make the patch less invasive.
>

Ah, I see. Just a misunderstanding, I'll make sure to fix that once I'm home.

> ...
>
> > -                            __func__, i2c_address, reg_address, value, mask);
>
> > +                             __func__, i2c_address, reg_address, value, mask);
>
> Still a stray change.

Yea, I'm not sure what's going on with this one. I think in my editor
it looked like there was some misalignment from before but I'll see
about dropping that.

> ...
>
> It should be
>
>         int ret; // also left untouched, drop that from commit message as well
>
>         if (d->exec_mipi_pmic_seq_element) {
>                 // the below if-else-if just should be left untouched.
>                 if (i2c_address == d->pmic_i2c_address) {
>                         ...
>                 } else {
>                         ...
>                 }
>
>                 return ret;
>         }
>
>         if (d->pmic_i2c_address) {
>         }
>
>         ...warnings...
>         return -EOPNOTSUPP;
>

Alright, thanks for clarifying this. I'll make sure this gets in for the v4.

best regards,
maxwell

> We may get a second patch for deeper refactoring later on.
>
> --
> With Best Regards,
> Andy Shevchenko
>
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v4] ACPI: pmic: Replace mutex_lock/unlock() with guard()/scoped_guard()
  2026-04-29 13:14   ` Maxwell Doose
@ 2026-04-29 13:31     ` Andy Shevchenko
  0 siblings, 0 replies; 4+ messages in thread
From: Andy Shevchenko @ 2026-04-29 13:31 UTC (permalink / raw)
  To: Maxwell Doose
  Cc: Andy Shevchenko, rafael, lenb, andy, westeri, linux-acpi,
	linux-kernel

On Wed, Apr 29, 2026 at 4:14 PM Maxwell Doose <m32285159@gmail.com> wrote:
> On Wed, Apr 29, 2026 at 4:55 AM Andy Shevchenko
> <andriy.shevchenko@intel.com> wrote:
> > On Tue, Apr 28, 2026 at 08:24:32PM -0500, Maxwell Doose wrote:

...

> > It should be
> >
> >         int ret; // also left untouched, drop that from commit message as well

> >         if (d->exec_mipi_pmic_seq_element) {

I realised that the body below should be...

> >                 // the below if-else-if just should be left untouched.
> >                 if (i2c_address == d->pmic_i2c_address) {
> >                         ...
> >                 } else {
> >                         ...
> >                 }
> >
> >                 return ret;
> >         }
> >
> >         if (d->pmic_i2c_address) {

...part of this conditional. But I hope you got the idea.

> >         }
> >
> >         ...warnings...
> >         return -EOPNOTSUPP;
>
> Alright, thanks for clarifying this. I'll make sure this gets in for the v4.

-- 
With Best Regards,
Andy Shevchenko

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-04-29 13:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-29  1:24 [PATCH v4] ACPI: pmic: Replace mutex_lock/unlock() with guard()/scoped_guard() Maxwell Doose
2026-04-29  9:55 ` Andy Shevchenko
2026-04-29 13:14   ` Maxwell Doose
2026-04-29 13:31     ` Andy Shevchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox