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 75920CCA47B for ; Tue, 28 Jun 2022 02:27:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S244510AbiF1C1C (ORCPT ); Mon, 27 Jun 2022 22:27:02 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33312 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S244350AbiF1CZB (ORCPT ); Mon, 27 Jun 2022 22:25:01 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 071AF252AC; Mon, 27 Jun 2022 19:23:42 -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 A51EFB81C19; Tue, 28 Jun 2022 02:23:40 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8C83AC34115; Tue, 28 Jun 2022 02:23:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1656383019; bh=fsCtIVhV2ef0xHT+nArdUMGg/mCyQ7k6RoDeoHr3e6k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UkM1EdnwTrkCDX5wenJ3/r61MSm2UvKW5mbZoN/KVON3fQqYitsJSasnCMbOTBzbJ rv80tvs1gK2dhASxUujU6tfDQSq+mdCkSnnM/j9nlspjaTOFQ37GhwkMGpDrBxPIm9 7tQVLJKROuBZTPJR4Tx91tvQbQdrYxzrKeLKIxz/VWSpSBU6TSkPQpc3hmV+doyKEI nLkPW3iliMcPsqZpedjpBYYOdxs/YIBz18TLhh0MxoVgcLu0c9iM199MWZQ/2GFZ/P 7sB+9Ui/vpFKDXn2P2FhN7aIyM7wwxrHb6kATq/qI/V95NufL9O+vU0rdk2yf6AAqm myJ5jo8FFKlUg== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Liang He , Thomas Bogendoerfer , Sasha Levin , miodrag.dinic@mips.com, paulburton@kernel.org, linux-mips@vger.kernel.org Subject: [PATCH AUTOSEL 5.10 21/34] arch: mips: generic: Add missing of_node_put() in board-ranchu.c Date: Mon, 27 Jun 2022 22:22:28 -0400 Message-Id: <20220628022241.595835-21-sashal@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220628022241.595835-1-sashal@kernel.org> References: <20220628022241.595835-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 4becf6417bbdc293734a590fe4ed38437bbcea2c ] In ranchu_measure_hpt_freq(), of_find_compatible_node() will return a node pointer with refcount incremented. We should use of_put_node() when it is not used anymore. Signed-off-by: Liang He Signed-off-by: Thomas Bogendoerfer Signed-off-by: Sasha Levin --- arch/mips/generic/board-ranchu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/mips/generic/board-ranchu.c b/arch/mips/generic/board-ranchu.c index a89aaad59cb1..930c45041882 100644 --- a/arch/mips/generic/board-ranchu.c +++ b/arch/mips/generic/board-ranchu.c @@ -44,6 +44,7 @@ static __init unsigned int ranchu_measure_hpt_freq(void) __func__); rtc_base = of_iomap(np, 0); + of_node_put(np); if (!rtc_base) panic("%s(): Failed to ioremap Goldfish RTC base!", __func__); -- 2.35.1