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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id A1DD6C43334 for ; Thu, 30 Jun 2022 13:34:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Date:Message-Id:Subject: References:In-Reply-To:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=UeVNRA2PaIXsjcjoZV4k59Ehw3DYpfBwGq29r6jbMYY=; b=om7eztvLzJcZkq KBy89r+jkKmtPD+JNt0EB5Cvvn+Vbl+dFuFwP9l2Qa/8qjy22Hop65sDrHlH8EiwZ4vsiMugLrrbZ hbOSxbcIEh7WuKR9pLFAXEg4bUn7CYIjp1CeaSOGc0Um0BoH/jREceJaOPES6FstwHt96H+M7qCKB 56JEAiv/e8U4jYGdvnJ8VlX7jm8AP3A7Bfbec+2tRALcMXRISAazcT1/e1hoQsC/45BjHWCDQ5oR7 VJecWsZooYIsXgfmgtdDzkd0JnUWkIdXQMaR2dN+FiBNbcN5d9BBxJ8slcKxrDYrDmkBWZgdvKpc9 Xrr0qLt77eLvcF5iSp+Q==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1o6uIq-00HKfh-SW; Thu, 30 Jun 2022 13:33:53 +0000 Received: from ams.source.kernel.org ([145.40.68.75]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1o6uHI-00HJj8-77 for linux-arm-kernel@lists.infradead.org; Thu, 30 Jun 2022 13:32:17 +0000 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 E2B63B82ACA; Thu, 30 Jun 2022 13:32:14 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id A7AD9C341CB; Thu, 30 Jun 2022 13:32:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1656595933; bh=YRaG1Pdyt9v6IxM77IbR0DbTBlSwbataWHpQa84qD88=; h=From:To:Cc:In-Reply-To:References:Subject:Date:From; b=CmX3eK041l/LISln4wNI+SoAaNPa6TRNnF/jzvyR5gjgLVNAtvqk5S0FZBb9K6MRp W8fP1AXKFa3rIZKP4cNZAoFol4S6ZQVafWI/Y8DLqg5aXxXqJjyTrRJVPZg50V7Hl1 Dl4mIT7PwHPO6VQTj/4SuOwLbGRDqFVR+R49fcSxkhsjgmf4DlDbk9sRxIG8uz9PJx RQHLEXpdEd6g79CzYIQiXopGc2mgyz889GVkGtfGRWDkmkZ/yhtMC0ItxLsxCh6lha iWKUZ/+Pp4r51F4VEHPL+Q81JlAX9ib04kvfA11NvoOe+li6T8T/lywjPzpZKiwdJM P2epsgOeqzcDA== From: Mark Brown To: sudeep.holla@arm.com, lgirdwood@gmail.com, windhl@126.com, cristian.marussi@arm.com Cc: linux-arm-kernel@lists.infradead.org In-Reply-To: <20220622034816.4094043-1-windhl@126.com> References: <20220622034816.4094043-1-windhl@126.com> Subject: Re: [PATCH] regulator/scmi: Add missing of_node_get() Message-Id: <165659593240.540699.3962056532827363602.b4-ty@kernel.org> Date: Thu, 30 Jun 2022 14:32:12 +0100 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220630_063216_438346_3F5D9243 X-CRM114-Status: GOOD ( 12.07 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Wed, 22 Jun 2022 11:48:16 +0800, Liang He wrote: > In scmi_regulator_probe(), of_find_node_by_name() will decrease > the refcount of its first argument and we need a of_node_get() > to keep reference balance. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next Thanks! [1/1] regulator/scmi: Add missing of_node_get() commit: a9e37a828ca069802b2f817e3cbf791b3806c97c All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel