From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 0917A22257E; Tue, 8 Apr 2025 11:54:31 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744113271; cv=none; b=m09Wm87xP+TgyLRLZFMMlXgfEfXdteoyD0O0joGIcvVsdGTg3iaoEdl4mNzXUy8s2+I05uKpyOHCjVOgpSYUGgJvqj7yICMviwRMPFLAR1huVYbWoidC59oii6+1Jyau0P+z3RG9lUsVjio4D7zXAERbqaXx+fZxiEfNavSnFLQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744113271; c=relaxed/simple; bh=cNS3FxawMP1WdVyLIrR73aVGBGLRiFuTHUXWZPxUcsQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=mBgz6FD9WHlHs2n8RQLy4ll5a232FAja5TKrCnQgYeyqU4kz5+L6Qxum9ocCE8F5aArfU4E+vhWUy40nDCKRtUu2qztwndX8RCp4Ena++TVkimrSkfFIwKijLIgrDcH6gpd6qG5v7YZZjgMNqSgziy0P5x8Mjuac4phzv7fgaeE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=F7hxp1m8; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="F7hxp1m8" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 90AEFC4CEE5; Tue, 8 Apr 2025 11:54:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744113270; bh=cNS3FxawMP1WdVyLIrR73aVGBGLRiFuTHUXWZPxUcsQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=F7hxp1m8NPgRyZ2zDQPnUhzDVcSKZisfRMXcp8NBX2tNoTPDf5B1TedA9GOiFNIyf dkU5HaogWpfTkhGCTQLAbgeSINNqVoKGS2ONxoxVtj8vb+r4Puhl664SbzqkqsNoSl f9kOz86A4zs69HaZfDc3bbHjM7OAzt9FJX25c6+c= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Fabrizio Castro , Lad Prabhakar , Geert Uytterhoeven , Sasha Levin Subject: [PATCH 6.6 096/268] pinctrl: renesas: rzv2m: Fix missing of_node_put() call Date: Tue, 8 Apr 2025 12:48:27 +0200 Message-ID: <20250408104831.084962451@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250408104828.499967190@linuxfoundation.org> References: <20250408104828.499967190@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Fabrizio Castro [ Upstream commit 5a550b00704d3a2cd9d766a9427b0f8166da37df ] of_parse_phandle_with_fixed_args() requires its caller to call into of_node_put() on the node pointer from the output structure, but such a call is currently missing. Call into of_node_put() to rectify that. Fixes: 92a9b8252576 ("pinctrl: renesas: Add RZ/V2M pin and gpio controller driver") Signed-off-by: Fabrizio Castro Reviewed-by: Lad Prabhakar Reviewed-by: Geert Uytterhoeven Link: https://lore.kernel.org/20250305163753.34913-4-fabrizio.castro.jz@renesas.com Signed-off-by: Geert Uytterhoeven Signed-off-by: Sasha Levin --- drivers/pinctrl/renesas/pinctrl-rzv2m.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/pinctrl/renesas/pinctrl-rzv2m.c b/drivers/pinctrl/renesas/pinctrl-rzv2m.c index 52aeafaba4b69..b89ae65e71b0e 100644 --- a/drivers/pinctrl/renesas/pinctrl-rzv2m.c +++ b/drivers/pinctrl/renesas/pinctrl-rzv2m.c @@ -944,6 +944,8 @@ static int rzv2m_gpio_register(struct rzv2m_pinctrl *pctrl) return ret; } + of_node_put(of_args.np); + if (of_args.args[0] != 0 || of_args.args[1] != 0 || of_args.args[2] != pctrl->data->n_port_pins) { dev_err(pctrl->dev, "gpio-ranges does not match selected SOC\n"); -- 2.39.5