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 E0A5E1A2860; Tue, 8 Apr 2025 12:46:44 +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=1744116405; cv=none; b=R61WGZi1VseE3Plf1JegLGdDD/NG6iwck4gx5zDqYTbx12CmQYW7XxNqv4bVD2fk8dQzLkHhcCNXWDfpG2Q+qQB4OJpPYUAjtqJmJDdDPd0BSZV/pCkDT55zkp3Xepl/xIIp/tlIJd6a3vSW+focPzr8G2zMDA7xdutf+R6xJUk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744116405; c=relaxed/simple; bh=g9gu/wiWY1EXAO+3v7QcuNUGtKNknQLw8l0W18Q3EVE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=b/h3RhEp4uV7ZkKeCzSEW9dx4zSxRPA/ksI+uBSu+5vVeqjO/HjoX4oU9gUaHXF9lUtR0kHqjIoXGar7hMawlN6nkfG4u5jfjfVtW9pRMcbR+XoRSvLy3KiDZVE6MGGgYsZhGdZGfpFDtJfonTbPeUdX+H910XSNAJcQpPnTHpM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=QIZnvd5f; 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="QIZnvd5f" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 732DAC4CEE5; Tue, 8 Apr 2025 12:46:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744116404; bh=g9gu/wiWY1EXAO+3v7QcuNUGtKNknQLw8l0W18Q3EVE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=QIZnvd5fYOEagPww7Ikean76wnHWTNTF1gzTV0mGirgpwVoZI5TWxzsZbDRhRecbu d7XABD5rEvPqJMk7DENpXpk+MSgfRL63d7KLRXmgPFkeWgJ4so37rgYyUs49ELjaJ0 l52ksg8Axw9VkbvP6TUpy7MB/nAGJRz+nABDeadI= 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.12 127/423] pinctrl: renesas: rza2: Fix missing of_node_put() call Date: Tue, 8 Apr 2025 12:47:33 +0200 Message-ID: <20250408104848.686814559@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250408104845.675475678@linuxfoundation.org> References: <20250408104845.675475678@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.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Fabrizio Castro [ Upstream commit abcdeb4e299a11ecb5a3ea0cce00e68e8f540375 ] 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: b59d0e782706 ("pinctrl: Add RZ/A2 pin and gpio controller") Signed-off-by: Fabrizio Castro Reviewed-by: Lad Prabhakar Reviewed-by: Geert Uytterhoeven Link: https://lore.kernel.org/20250305163753.34913-5-fabrizio.castro.jz@renesas.com Signed-off-by: Geert Uytterhoeven Signed-off-by: Sasha Levin --- drivers/pinctrl/renesas/pinctrl-rza2.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/pinctrl/renesas/pinctrl-rza2.c b/drivers/pinctrl/renesas/pinctrl-rza2.c index af689d7c117f3..773eaf508565b 100644 --- a/drivers/pinctrl/renesas/pinctrl-rza2.c +++ b/drivers/pinctrl/renesas/pinctrl-rza2.c @@ -253,6 +253,8 @@ static int rza2_gpio_register(struct rza2_pinctrl_priv *priv) return ret; } + of_node_put(of_args.np); + if ((of_args.args[0] != 0) || (of_args.args[1] != 0) || (of_args.args[2] != priv->npins)) { -- 2.39.5