[PATCH] power: sequencing: qcom-wcn: use device_get_match_data()

Bartosz Golaszewski posted 1 patch 6 days, 9 hours ago
drivers/power/sequencing/pwrseq-qcom-wcn.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
[PATCH] power: sequencing: qcom-wcn: use device_get_match_data()
Posted by Bartosz Golaszewski 6 days, 9 hours ago
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
Re: [PATCH] power: sequencing: qcom-wcn: use device_get_match_data()
Posted by Neil Armstrong 6 days, 9 hours ago
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>