drivers/iio/adc/pac1921.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
From: Victor Duicu <victor.duicu@microchip.com>
This patch moves ACPI_FREE() in pac1921_match_acpi_device()
in order to cover all branches.
Reported-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Fixes: 9fdf1d033316 ("iio: adc: pac1921: Add ACPI support to Microchip pac1921")
Acked-by: Matteo Martelli <matteomartelli3@gmail.com>
Signed-off-by: Victor Duicu <victor.duicu@microchip.com>
---
This patch ensures that status is freed before
exiting the function.
Differences related to previous versions:
v3:
- add parentheses to function names.
v2:
- add Fixes tag.
- remove unnecessary blank line.
v1:
- initial version for review.
drivers/iio/adc/pac1921.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/iio/adc/pac1921.c b/drivers/iio/adc/pac1921.c
index 90f61c47b1c4..63f518215156 100644
--- a/drivers/iio/adc/pac1921.c
+++ b/drivers/iio/adc/pac1921.c
@@ -1198,11 +1198,11 @@ static int pac1921_match_acpi_device(struct iio_dev *indio_dev)
label = devm_kstrdup(dev, status->package.elements[0].string.pointer,
GFP_KERNEL);
+ ACPI_FREE(status);
if (!label)
return -ENOMEM;
indio_dev->label = label;
- ACPI_FREE(status);
return 0;
}
base-commit: 577a66e2e634f712384c57a98f504c44ea4b47da
--
2.45.2
On Fri, Jan 17, 2025 at 8:55 AM <victor.duicu@microchip.com> wrote: > > From: Victor Duicu <victor.duicu@microchip.com> > > This patch moves ACPI_FREE() in pac1921_match_acpi_device() > in order to cover all branches. Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> -- With Best Regards, Andy Shevchenko
On Fri, 17 Jan 2025 16:36:08 +0200 Andy Shevchenko <andy.shevchenko@gmail.com> wrote: > On Fri, Jan 17, 2025 at 8:55 AM <victor.duicu@microchip.com> wrote: > > > > From: Victor Duicu <victor.duicu@microchip.com> > > > > This patch moves ACPI_FREE() in pac1921_match_acpi_device() > > in order to cover all branches. > > Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> > We are at an odd point in the cycle where my fixes branch has an odd base so I can't push it out without messing up linux-next. So applied, but you can't see it yet. That will all unwind during the merge window Thanks, Jonathan
© 2016 - 2026 Red Hat, Inc.