From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B609BCCA485 for ; Tue, 28 Jun 2022 02:24:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S244290AbiF1CYX (ORCPT ); Mon, 27 Jun 2022 22:24:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:32830 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S244099AbiF1CXA (ORCPT ); Mon, 27 Jun 2022 22:23:00 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A79DB25592; Mon, 27 Jun 2022 19:22:24 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 46F0D617E3; Tue, 28 Jun 2022 02:22:24 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id F3002C36AE7; Tue, 28 Jun 2022 02:22:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1656382943; bh=AcjC1jjE+jTG9hEhE6UMQJwpk9S501pZki2orxkU38E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=glReOt1Ygjqm/5Ln+Gart2t4v5QZawJ+7xyqXRD5MpqhouWbBuN6s38kwf9e0PZsN TPmi6CcgaKicr49KuukFQg80PhPQwCaMwRD0QJbrTdqzAnrClvEyiqKzYPqWOGfqvf OVxOK4RKVQFfqr47Ng41Mztr5vQkYcbcc54sLVtoxiMEMuueih6TXqdafCyU2GZOMn xxwHOMkV9qlBmsiG17qAlAlCu1Qi08zIe5oENfrug92dimNyF4TGGAF15ZMduRMKdz 5nNtfArnXNaSH1uLnmi004PzFF1J/nURFubbyXvBkv/b4syegRUgBtQi/VCBAYjqd6 n0ccAPifVROWQ== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Liang He , Thomas Bogendoerfer , Sasha Levin , john@phrozen.org, linux-mips@vger.kernel.org Subject: [PATCH AUTOSEL 5.15 34/41] mips: lantiq: Add missing of_node_put() in irq.c Date: Mon, 27 Jun 2022 22:20:53 -0400 Message-Id: <20220628022100.595243-34-sashal@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220628022100.595243-1-sashal@kernel.org> References: <20220628022100.595243-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Liang He [ Upstream commit 3748d2185ac4c2c6f80989672253aad909ecaf95 ] In icu_of_init(), of_find_compatible_node() will return a node pointer with refcount incremented. We should use of_node_put() when it is not used anymore. Signed-off-by: Liang He Signed-off-by: Thomas Bogendoerfer Signed-off-by: Sasha Levin --- arch/mips/lantiq/irq.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/mips/lantiq/irq.c b/arch/mips/lantiq/irq.c index b732495f138a..20622bf0a9b3 100644 --- a/arch/mips/lantiq/irq.c +++ b/arch/mips/lantiq/irq.c @@ -408,6 +408,7 @@ int __init icu_of_init(struct device_node *node, struct device_node *parent) if (!ltq_eiu_membase) panic("Failed to remap eiu memory"); } + of_node_put(eiu_node); return 0; } -- 2.35.1