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 5C8D8C43334 for ; Tue, 28 Jun 2022 02:29:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S244406AbiF1C3U (ORCPT ); Mon, 27 Jun 2022 22:29:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40424 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S244628AbiF1C1d (ORCPT ); Mon, 27 Jun 2022 22:27:33 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id DC5DFC51; Mon, 27 Jun 2022 19:25:08 -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 ams.source.kernel.org (Postfix) with ESMTPS id 95EA4B81C0B; Tue, 28 Jun 2022 02:25:07 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id AA387C341CA; Tue, 28 Jun 2022 02:25:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1656383106; bh=b0uihVmEpqrZTehAaLY+qniMp86o/0l81JLGHY4/7SE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=uTUdOJxG2ZDT0FIPLmePG6JLQ1eFWBeYwRuoyB/GFbd9AGq9084XwAxrKFxAFaCiq uSMPjgAyO6sGzui80aYSlv2NiOl+MvFVDJuUwNXJ1aRCsJMhk1VhaQqUOAk3jARaFN G0ipKsDsCq6cHKJ1cOIusUKmdqlVRA8GAYjL3hXIG8gsmyGlOIDQu4HKSefg5WCJTU NL/YlhNWuc146kqSIOL3Yms/SfccV5UrS0ZPlEXHwnz7d90cbTmicjLuI5RKwlQWwd vrAtjCST3myRgBSK6wGxBOdtwKjRWPWUaucMT+C8eq+fXj9HFrWCAdbn6F3XtNCsRp efzVvm0lJphjg== 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.4 22/27] mips: lantiq: Add missing of_node_put() in irq.c Date: Mon, 27 Jun 2022 22:24:08 -0400 Message-Id: <20220628022413.596341-22-sashal@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220628022413.596341-1-sashal@kernel.org> References: <20220628022413.596341-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-mips@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 9fcc118312cb..d179e37f8881 100644 --- a/arch/mips/lantiq/irq.c +++ b/arch/mips/lantiq/irq.c @@ -407,6 +407,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