From: Lukasz Luba <lukasz.luba@arm.com>
To: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
"Alexandre Belloni" <alexandre.belloni@bootlin.com>,
"Samuel Holland" <samuel@sholland.org>,
"Matthias Brugger" <matthias.bgg@gmail.com>,
"Viresh Kumar" <viresh.kumar@linaro.org>,
"Rafael J. Wysocki" <rafael@kernel.org>,
"Thierry Reding" <thierry.reding@gmail.com>,
"Daniel Lezcano" <daniel.lezcano@kernel.org>,
"Claudiu Beznea" <claudiu.beznea@tuxon.dev>,
"Saravana Kannan" <saravanak@google.com>,
"Jonathan Hunter" <jonathanh@nvidia.com>,
"Nicolas Ferre" <nicolas.ferre@microchip.com>,
"Thomas Gleixner" <tglx@linutronix.de>,
"Maximilian Luz" <luzmaximilian@gmail.com>,
"Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
"Konrad Dybcio" <konradybcio@kernel.org>,
"Bjorn Andersson" <andersson@kernel.org>,
"Daniel Lezcano" <daniel.lezcano@linaro.org>,
"Lorenzo Pieralisi" <lpieralisi@kernel.org>,
linux-pm@vger.kernel.org, "Chen-Yu Tsai" <wens@kernel.org>,
"Yangtao Li" <tiny.windzz@gmail.com>,
"AngeloGioacchino Del Regno"
<angelogioacchino.delregno@collabora.com>,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org, linux-sunxi@lists.linux.dev,
linux-arm-msm@vger.kernel.org,
platform-driver-x86@vger.kernel.org, linux-tegra@vger.kernel.org,
"Rob Herring" <robh@kernel.org>,
"Jernej Skrabec" <jernej.skrabec@gmail.com>,
"Hans de Goede" <hansg@kernel.org>
Subject: Re: [PATCH v2 09/11] powercap: dtpm: Simplify with of_machine_get_match_data()
Date: Thu, 13 Nov 2025 09:50:40 +0000 [thread overview]
Message-ID: <953f1aaa-d8bd-4091-9bf6-9538ccdd3bfa@arm.com> (raw)
In-Reply-To: <20251112-b4-of-match-matchine-data-v2-9-d46b72003fd6@linaro.org>
On 11/12/25 10:28, Krzysztof Kozlowski wrote:
> Replace open-coded getting root OF node, matching against it and getting
> the match data with new of_machine_get_match_data() helper.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
>
> ---
>
> Depends on the first OF patch.
> ---
> drivers/powercap/dtpm.c | 16 +---------------
> 1 file changed, 1 insertion(+), 15 deletions(-)
>
> diff --git a/drivers/powercap/dtpm.c b/drivers/powercap/dtpm.c
> index f390665743c4..129d55bc705c 100644
> --- a/drivers/powercap/dtpm.c
> +++ b/drivers/powercap/dtpm.c
> @@ -548,9 +548,7 @@ static int dtpm_for_each_child(const struct dtpm_node *hierarchy,
> */
> int dtpm_create_hierarchy(struct of_device_id *dtpm_match_table)
> {
> - const struct of_device_id *match;
> const struct dtpm_node *hierarchy;
> - struct device_node *np;
> int i, ret;
>
> mutex_lock(&dtpm_lock);
> @@ -567,19 +565,7 @@ int dtpm_create_hierarchy(struct of_device_id *dtpm_match_table)
> goto out_pct;
> }
>
> - ret = -ENODEV;
> - np = of_find_node_by_path("/");
> - if (!np)
> - goto out_err;
> -
> - match = of_match_node(dtpm_match_table, np);
> -
> - of_node_put(np);
> -
> - if (!match)
> - goto out_err;
> -
> - hierarchy = match->data;
> + hierarchy = of_machine_get_match_data(dtpm_match_table);
> if (!hierarchy) {
> ret = -EFAULT;
> goto out_err;
>
I don't know if Daniel had a chance to look at it, but I can help him.
The patch looks OK.
The extra return error value which is removed doesn't harm the client of
this function in other subsystem.
Reviewed-by: Lukasz Luba <lukasz.luba@arm.com>
next prev parent reply other threads:[~2025-11-13 9:50 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-12 10:28 [PATCH v2 00/11] of: Add wrappers to match root node with OF device ID tables Krzysztof Kozlowski
2025-11-12 10:28 ` [PATCH v2 01/11] " Krzysztof Kozlowski
2025-11-13 9:55 ` Lukasz Luba
2025-12-02 14:07 ` Geert Uytterhoeven
2025-11-12 10:28 ` [PATCH v2 02/11] cpufreq: dt-platdev: Simplify with of_machine_get_match_data() Krzysztof Kozlowski
2025-11-12 11:44 ` AngeloGioacchino Del Regno
2025-12-02 13:56 ` Geert Uytterhoeven
2025-11-12 10:28 ` [PATCH v2 03/11] cpufreq: mediatek: " Krzysztof Kozlowski
2025-11-12 11:44 ` AngeloGioacchino Del Regno
2025-11-12 10:28 ` [PATCH v2 04/11] cpufreq: sun50i: Simplify with of_machine_device_match() Krzysztof Kozlowski
2025-11-12 10:28 ` [PATCH v2 05/11] cpuidle: big_little: " Krzysztof Kozlowski
2025-11-12 11:44 ` AngeloGioacchino Del Regno
2025-11-12 10:28 ` [PATCH v2 06/11] firmware: qcom: scm: " Krzysztof Kozlowski
2025-11-12 11:44 ` AngeloGioacchino Del Regno
2025-11-12 10:28 ` [PATCH v2 07/11] irqchip/atmel-aic: Simplify with of_machine_get_match_data() Krzysztof Kozlowski
2025-11-12 13:06 ` Alexandre Belloni
2025-11-12 10:28 ` [PATCH v2 08/11] platform: surface: " Krzysztof Kozlowski
2025-11-12 10:28 ` [PATCH v2 09/11] powercap: dtpm: " Krzysztof Kozlowski
2025-11-13 9:50 ` Lukasz Luba [this message]
2025-11-12 10:28 ` [PATCH v2 10/11] soc: qcom: ubwc: " Krzysztof Kozlowski
2025-11-12 10:28 ` [PATCH v2 11/11] soc: tegra: Simplify with of_machine_device_match() Krzysztof Kozlowski
2025-11-12 11:44 ` AngeloGioacchino Del Regno
2025-11-14 13:17 ` Thierry Reding
2025-11-12 11:52 ` [PATCH v2 00/11] of: Add wrappers to match root node with OF device ID tables AngeloGioacchino Del Regno
2025-11-14 13:24 ` Thierry Reding
2025-11-27 1:55 ` Rob Herring
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=953f1aaa-d8bd-4091-9bf6-9538ccdd3bfa@arm.com \
--to=lukasz.luba@arm.com \
--cc=alexandre.belloni@bootlin.com \
--cc=andersson@kernel.org \
--cc=angelogioacchino.delregno@collabora.com \
--cc=claudiu.beznea@tuxon.dev \
--cc=daniel.lezcano@kernel.org \
--cc=daniel.lezcano@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=hansg@kernel.org \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=jernej.skrabec@gmail.com \
--cc=jonathanh@nvidia.com \
--cc=konradybcio@kernel.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-sunxi@lists.linux.dev \
--cc=linux-tegra@vger.kernel.org \
--cc=lpieralisi@kernel.org \
--cc=luzmaximilian@gmail.com \
--cc=matthias.bgg@gmail.com \
--cc=nicolas.ferre@microchip.com \
--cc=platform-driver-x86@vger.kernel.org \
--cc=rafael@kernel.org \
--cc=robh@kernel.org \
--cc=samuel@sholland.org \
--cc=saravanak@google.com \
--cc=tglx@linutronix.de \
--cc=thierry.reding@gmail.com \
--cc=tiny.windzz@gmail.com \
--cc=viresh.kumar@linaro.org \
--cc=wens@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).