drivers/power/sequencing/pwrseq-qcom-wcn.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Use the generic fwnode interface for retrieving device match data
instead of the OF-specific one.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
drivers/power/sequencing/pwrseq-qcom-wcn.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/power/sequencing/pwrseq-qcom-wcn.c b/drivers/power/sequencing/pwrseq-qcom-wcn.c
index 663d9a5370653..823f68ffebd1a 100644
--- a/drivers/power/sequencing/pwrseq-qcom-wcn.c
+++ b/drivers/power/sequencing/pwrseq-qcom-wcn.c
@@ -12,6 +12,7 @@
#include <linux/module.h>
#include <linux/of.h>
#include <linux/platform_device.h>
+#include <linux/property.h>
#include <linux/regulator/consumer.h>
#include <linux/pwrseq/provider.h>
#include <linux/string.h>
@@ -373,7 +374,7 @@ static int pwrseq_qcom_wcn_probe(struct platform_device *pdev)
ctx->of_node = dev->of_node;
- ctx->pdata = of_device_get_match_data(dev);
+ ctx->pdata = device_get_match_data(dev);
if (!ctx->pdata)
return dev_err_probe(dev, -ENODEV,
"Failed to obtain platform data\n");
--
2.51.0
On Tue, 25 Nov 2025 14:47:00 +0100, Bartosz Golaszewski wrote:
> Use the generic fwnode interface for retrieving device match data
> instead of the OF-specific one.
>
>
Applied, thanks!
[1/1] power: sequencing: qcom-wcn: use device_get_match_data()
commit: b1857911d845136cdf627501070dd1b2dc7d0bbe
Best regards,
--
Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
On 11/25/25 14:47, Bartosz Golaszewski wrote: > From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> > > Use the generic fwnode interface for retrieving device match data > instead of the OF-specific one. > > Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> > --- > drivers/power/sequencing/pwrseq-qcom-wcn.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/power/sequencing/pwrseq-qcom-wcn.c b/drivers/power/sequencing/pwrseq-qcom-wcn.c > index 663d9a5370653..823f68ffebd1a 100644 > --- a/drivers/power/sequencing/pwrseq-qcom-wcn.c > +++ b/drivers/power/sequencing/pwrseq-qcom-wcn.c > @@ -12,6 +12,7 @@ > #include <linux/module.h> > #include <linux/of.h> > #include <linux/platform_device.h> > +#include <linux/property.h> > #include <linux/regulator/consumer.h> > #include <linux/pwrseq/provider.h> > #include <linux/string.h> > @@ -373,7 +374,7 @@ static int pwrseq_qcom_wcn_probe(struct platform_device *pdev) > > ctx->of_node = dev->of_node; > > - ctx->pdata = of_device_get_match_data(dev); > + ctx->pdata = device_get_match_data(dev); > if (!ctx->pdata) > return dev_err_probe(dev, -ENODEV, > "Failed to obtain platform data\n"); Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
© 2016 - 2026 Red Hat, Inc.