[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <8e75b00d-06c3-4f8c-91c2-42d468a67a12@linaro.org>
Date: Tue, 25 Nov 2025 14:56:45 +0100
From: Neil Armstrong <neil.armstrong@...aro.org>
To: Bartosz Golaszewski <brgl@...ev.pl>, linux-pm@...r.kernel.org,
linux-kernel@...r.kernel.org, linux-arm-msm@...r.kernel.org
Cc: Bartosz Golaszewski <bartosz.golaszewski@...aro.org>
Subject: Re: [PATCH] power: sequencing: qcom-wcn: use device_get_match_data()
On 11/25/25 14:47, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bartosz.golaszewski@...aro.org>
>
> Use the generic fwnode interface for retrieving device match data
> instead of the OF-specific one.
>
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@...aro.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@...aro.org>
Powered by blists - more mailing lists