public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzk@kernel.org>
To: Kathiravan Thirumoorthy
	<kathiravan.thirumoorthy@oss.qualcomm.com>,
	Bjorn Andersson <andersson@kernel.org>,
	Konrad Dybcio <konradybcio@kernel.org>
Cc: linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 08/10] soc: qcom: smsm: Use __cleanup() for device_node pointers
Date: Tue, 18 Nov 2025 12:42:07 +0100	[thread overview]
Message-ID: <7db92cad-0a65-4e2c-85ed-6fe03de71dc5@kernel.org> (raw)
In-Reply-To: <20251117-cleanup_node_put-v1-8-5f107071d171@oss.qualcomm.com>

On 17/11/2025 05:51, Kathiravan Thirumoorthy wrote:
> Apply the __cleanup() attribute to device_node pointers to simplify
> resource management and remove explicit of_node_put() calls.
> 
> Signed-off-by: Kathiravan Thirumoorthy <kathiravan.thirumoorthy@oss.qualcomm.com>
> ---
>  drivers/soc/qcom/smsm.c | 10 +++-------
>  1 file changed, 3 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/soc/qcom/smsm.c b/drivers/soc/qcom/smsm.c
> index 021e9d1f61dc5200514c5a239d52be97f7e82825..5600712f9185bba8c82da431cfb9f21f1bc44761 100644
> --- a/drivers/soc/qcom/smsm.c
> +++ b/drivers/soc/qcom/smsm.c
> @@ -397,7 +397,7 @@ static int smsm_parse_mbox(struct qcom_smsm *smsm, unsigned int host_id)
>   */
>  static int smsm_parse_ipc(struct qcom_smsm *smsm, unsigned host_id)
>  {
> -	struct device_node *syscon;
> +	struct device_node *syscon __free(device_node) = NULL;


NAK, stop with this pattern.

You are not simplifying anything here!

Best regards,
Krzysztof


  parent reply	other threads:[~2025-11-18 11:42 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-17  4:51 [PATCH 00/10] soc: qcom: Use __cleanup() for device_node pointers Kathiravan Thirumoorthy
2025-11-17  4:51 ` [PATCH 01/10] soc: qcom: aoss: " Kathiravan Thirumoorthy
2025-11-17 11:35   ` Konrad Dybcio
2025-11-18 11:39     ` Krzysztof Kozlowski
2025-11-18 12:25       ` Dmitry Baryshkov
2025-11-18 12:32         ` Krzysztof Kozlowski
2025-11-18 12:52           ` Dmitry Baryshkov
2025-11-18 13:16             ` Konrad Dybcio
2025-11-18 13:25               ` Krzysztof Kozlowski
2025-11-18 15:18           ` Kathiravan Thirumoorthy
2025-11-18 11:38   ` Krzysztof Kozlowski
2025-11-17  4:51 ` [PATCH 02/10] soc: qcom: gsbi: " Kathiravan Thirumoorthy
2025-11-17 11:35   ` Konrad Dybcio
2025-11-18 11:38   ` Krzysztof Kozlowski
2025-11-17  4:51 ` [PATCH 03/10] soc: qcom: pd-mapper: " Kathiravan Thirumoorthy
2025-11-17 11:36   ` Konrad Dybcio
2025-11-18 11:43   ` Krzysztof Kozlowski
2025-11-17  4:51 ` [PATCH 04/10] soc: qcom: rpm-proc: " Kathiravan Thirumoorthy
2025-11-17 11:36   ` Konrad Dybcio
2025-11-18 11:40   ` Krzysztof Kozlowski
2025-11-17  4:51 ` [PATCH 05/10] soc: qcom: rpm_master_stats: " Kathiravan Thirumoorthy
2025-11-17 11:37   ` Konrad Dybcio
2025-11-18 11:40   ` Krzysztof Kozlowski
2025-11-17  4:51 ` [PATCH 06/10] soc: qcom: smem: " Kathiravan Thirumoorthy
2025-11-17 11:37   ` Konrad Dybcio
2025-11-18 11:42   ` Krzysztof Kozlowski
2025-11-17  4:51 ` [PATCH 07/10] soc: qcom: smp2p: " Kathiravan Thirumoorthy
2025-11-17 11:37   ` Konrad Dybcio
2025-11-18 11:41   ` Krzysztof Kozlowski
2025-11-17  4:51 ` [PATCH 08/10] soc: qcom: smsm: " Kathiravan Thirumoorthy
2025-11-17 11:38   ` Konrad Dybcio
2025-11-18 11:42   ` Krzysztof Kozlowski [this message]
2025-11-17  4:51 ` [PATCH 09/10] soc: qcom: spm: " Kathiravan Thirumoorthy
2025-11-17 11:38   ` Konrad Dybcio
2025-11-18 11:42   ` Krzysztof Kozlowski
2025-11-17  4:51 ` [PATCH 10/10] soc: qcom: ubwc: " Kathiravan Thirumoorthy
2025-11-17 11:39   ` Konrad Dybcio
2025-11-18 11:43   ` Krzysztof Kozlowski

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=7db92cad-0a65-4e2c-85ed-6fe03de71dc5@kernel.org \
    --to=krzk@kernel.org \
    --cc=andersson@kernel.org \
    --cc=kathiravan.thirumoorthy@oss.qualcomm.com \
    --cc=konradybcio@kernel.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.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