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 A53F7C32771 for ; Fri, 19 Aug 2022 21:23:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1352403AbiHSVX5 (ORCPT ); Fri, 19 Aug 2022 17:23:57 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45196 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1352401AbiHSVXy (ORCPT ); Fri, 19 Aug 2022 17:23:54 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0B10331345; Fri, 19 Aug 2022 14:23:53 -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 D2D33616E4; Fri, 19 Aug 2022 21:23:52 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 33DFCC433D6; Fri, 19 Aug 2022 21:23:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1660944232; bh=BsyawgpcvakoM6sLopG14a5XVExMzcDUvEJpPeQ3XM8=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=XmSNCUH+PuYbSrjkDuwezDCvk2ZTtz5GzujtaACu/e8EbzLbGefuzOePfWPyQ1GII J2XNljDPUs5wzV16yZWn1xpcRK1s6TxMM6Exirvfzf+PwWyLDxTfPPBGjQ96eYZ/GD AQXvQKGeTkvFYPRjov5OyuIs2CbnQ6Rir9UgzjbJ3W0ztATqF/DZmUDTrC7UI5gz5w nH03IJxaEl7B+56M64HP0/AU5G0neE5Z6TMq1/T3tlv7jWHUKB9JAXiNd/qqqyl+hb 5wfm6PWH/ZcDIGFJ8uVJ721OH3A0udieBX1xrFEUy/GMpaKReXKC6xDeg14CELjDWJ mgYT0iHHfPKUw== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20220621091118.33930-1-tony@atomide.com> References: <20220621091118.33930-1-tony@atomide.com> Subject: Re: [PATCH] clk: ti: Fix missing of_node_get() ti_find_clock_provider() From: Stephen Boyd Cc: Michael Turquette , Tero Kristo , linux-omap@vger.kernel.org To: Tony Lindgren , linux-clk@vger.kernel.org Date: Fri, 19 Aug 2022 14:23:50 -0700 User-Agent: alot/0.10 Message-Id: <20220819212352.33DFCC433D6@smtp.kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting Tony Lindgren (2022-06-21 02:11:18) > For ti_find_clock_provider() we want to return the np with refcount > incremented. However we are missing of_node_get() for the > clock-output-names case that causes refcount warnings. >=20 > Fixes: 51f661ef9a10 ("clk: ti: Add ti_find_clock_provider() to use clock-= output-names") > Signed-off-by: Tony Lindgren > --- Applied to clk-fixes