From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E5B2141F7C3; Tue, 21 Jul 2026 21:40:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784670017; cv=none; b=KSjOgA2Bd+5sp2DunQBeF4SFuz10K33ojw/S4g1NmeWqZZhl3zjEtV93aOlfPpcg8+IX4mrGK48/rWAO2HoZNEgEFZsO4AA2MCKkn6T0kNTqaYKcjpGJ60jJL/6Nx2Gfpjup1ED1QB4C5kjrCAbx2Kj/tqU3Eb/fo3S+AaqktMA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784670017; c=relaxed/simple; bh=/9APQee8YysxVCOlkm39LOqIHInGPVILIoiIGv0cllE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ObtlbyrYFPacvRKu+bDuoN5JQ9HRNcnltUlljX3zeuAkhaMNJ4OeAIcVEaxqC3bCIDKolGkdZr8B4RSH91TpgulPFBfRcR+nuQzGOyt1sqZB/YrXGIlRT4dsIihLWi8SM0HEHRrFhR/VHObjaTyuBh/cw+aum+AJEQdRXDi/k1U= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=FKIIT3ug; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="FKIIT3ug" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 573491F000E9; Tue, 21 Jul 2026 21:40:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784670015; bh=3uRhCEtw+V9g2DmHYJhyhMclMnLEWYgGaUMojvvFP98=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=FKIIT3ugonRdygxHJ/GRn4GtjGB67gnblCbBJd1nVxpqUlA/DKuxzgLtd3tOZXukD 45mOTiqvLnZzF1XxPG+JcdMvskAiAaQsfU95NKPuZ0iHRTnAl7QQB+B5Gsayb13ewZ tPuobf9qBovaKI/LcD4oiaer6a4tuCPxs7DAoLXo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Bartosz Golaszewski , Lee Jones Subject: [PATCH 6.1 0773/1067] mfd: tps6586x: Fix OF node refcount Date: Tue, 21 Jul 2026 17:22:54 +0200 Message-ID: <20260721152441.863154955@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152424.521567757@linuxfoundation.org> References: <20260721152424.521567757@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Bartosz Golaszewski commit 3001ed2b4e06da2276c42ace6551617065a5b1f9 upstream. Platform devices created with platform_device_alloc() call platform_device_release() when the last reference to the device's kobject is dropped. This function calls of_node_put() unconditionally. This works fine for devices created with platform_device_register_full() but users of the split approach (platform_device_alloc() + platform_device_add()) must bump the reference of the of_node they assign manually. Add the missing call to of_node_get(). Cc: stable@vger.kernel.org Fixes: 62f6b0879304 ("tps6586x: Add device tree support") Signed-off-by: Bartosz Golaszewski Link: https://patch.msgid.link/20260521-pdev-fwnode-ref-v1-1-88c324a1b8d2@oss.qualcomm.com Signed-off-by: Lee Jones Signed-off-by: Greg Kroah-Hartman --- drivers/mfd/tps6586x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/mfd/tps6586x.c +++ b/drivers/mfd/tps6586x.c @@ -399,7 +399,7 @@ static int tps6586x_add_subdevs(struct t pdev->dev.parent = tps6586x->dev; pdev->dev.platform_data = subdev->platform_data; - pdev->dev.of_node = subdev->of_node; + pdev->dev.of_node = of_node_get(subdev->of_node); ret = platform_device_add(pdev); if (ret) {