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 389363644B3; Tue, 21 Jul 2026 19:53:49 +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=1784663630; cv=none; b=Koa6xupc23PnOG8LdSLQdUZyl0XtamIEHmIrLe9KVnKbiIIBDTdXiXvcGfNZiztW2iN1mbEzvlsUDDJ3ZTTONkmjSDfIbRYWwLx2ugLKo3SRP1MgXcOzbjE9MtGD1NKkkWzD12zNwcllj6cr1wKJ1SrRLdMjMyYgmPElX098adA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784663630; c=relaxed/simple; bh=ZhIk1LAy5Jv1oj6SoqZeLJcWVYBZjgy6/Jc2kxt/dLQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=DLWEAqq9WshSrNi9039DgzGf6TqX4h03x3k8tiyTv0JVdel/+PMS9Bf5UE0aBliqvxKUWmxIgVD3xZD+kU0+kIl6wOzbXxFtpMzt8DOqr7Z0O2gB0ljQqDiieFNmIUEYCmL4UcPe8sDT8f4hH+oXLDcljD48A2CBUbM5+WHCh8w= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ogJHcWhc; 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="ogJHcWhc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9D9431F000E9; Tue, 21 Jul 2026 19:53:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784663629; bh=xqfkLLUXsq/PLGoZN75IZs50tq7FcFzUhtv2V037Zwg=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=ogJHcWhcZ6Rq1CYlYWJy4EkwY2e2VjSlUuQ6JR0ZZVAadJODQWHAKcEsItfIbTv1y 2jlzYjA0vKzjoW/OCkuiis+i6ZIqMxSGUJLIYxU0bLQq6ro4BPniLonU9UcKHobm05 cqMJYZJaWQTCFbXFry2o+s5OJFLuE81wiu7UAb6Y= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Bartosz Golaszewski , Lee Jones Subject: [PATCH 6.12 0895/1276] mfd: tps6586x: Fix OF node refcount Date: Tue, 21 Jul 2026 17:22:18 +0200 Message-ID: <20260721152506.073211952@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152446.065700225@linuxfoundation.org> References: <20260721152446.065700225@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.12-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 @@ -397,7 +397,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) {