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 6518EFC72CA for ; Mon, 23 Mar 2026 07:43:54 +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:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=mqpRi7csRh2V2R5yevZAKlni+EyBzK7mWvV1XBNgj8s=; b=dikliuUgz/757v mtbJsL89VtxubC30ypsa9wl03ARlIZWOhVY2co1eWa5v7a9Te3HiXSaHGYGA8iKwLj+Rwg1sSIPjO 0wtvyhBRKvitQxCYNxs5dl5j946nDpYuXaYNHMvie6aAOf2v2Fs76il84voSnVNMhO7IE7ljdD3g5 DuBY0/9q7L4BGN/St+zohNsAGNgSAZW5D+DcmqM4G7ts8srD/gjPvoRAysTPmlKuHLOdxVJEsM8di 1uNaAwDsrNaXk0RSgDM324ozwYaI+mpgVM6+sQ3MRB9c/0aD98HzOP6fnFVjdk7tlRaUGqfEMJnzZ q63B7CIzmi1hTJ8+5MDA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98.2 #2 (Red Hat Linux)) id 1w4Zx3-0000000GD5x-2l2f; Mon, 23 Mar 2026 07:43:53 +0000 Received: from tor.source.kernel.org ([2600:3c04:e001:324:0:1991:8:25]) by bombadil.infradead.org with esmtps (Exim 4.98.2 #2 (Red Hat Linux)) id 1w4Zx2-0000000GD5R-1Bcu for linux-phy@lists.infradead.org; Mon, 23 Mar 2026 07:43:52 +0000 Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by tor.source.kernel.org (Postfix) with ESMTP id 23BF760051; Mon, 23 Mar 2026 07:43:51 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 59CC0C4CEF7; Mon, 23 Mar 2026 07:43:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1774251830; bh=lr5Fhmgun0YWB96hanC0s/lc635kRBaObUfJNlkomyE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=RmEl+FrurzTKfi+DrQDWO5WCLiGdO1TjB2N061ypBfroEMSGfEtJ7xKT2isDCZEFr PD654e+uSKF5iqt1M8EEqEVxr7PW6DpUCsNgi07TUcpFnQ/GST+cWHFNU61ODUd28e vZJjr3Q4LbqEkvaeQMg2O2dzOchzgGj9VmR1W80s= Date: Mon, 23 Mar 2026 08:43:29 +0100 From: Greg Kroah-Hartman To: Dmitry Torokhov Cc: Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Vinod Koul , Neil Armstrong , Mark Brown , Liam Girdwood , Lee Jones , Pavel Machek , Peter Rosin , Andrew Lunn , Heiner Kallweit , Russell King , Moritz Fischer , Xu Yilun , Tom Rix , "Rafael J. Wysocki" , Danilo Krummrich , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-phy@lists.infradead.org, linux-spi@vger.kernel.org, linux-leds@vger.kernel.org, linux-fpga@vger.kernel.org, driver-core@lists.linux.dev Subject: Re: [PATCH 10/10] driver core: class: remove class_find_device_by_of_node() Message-ID: <2026032321-freeing-outreach-be2e@gregkh> References: <20260322-remove-device-find-by-of-node-v1-0-b72eb22a1215@gmail.com> <20260322-remove-device-find-by-of-node-v1-10-b72eb22a1215@gmail.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20260322-remove-device-find-by-of-node-v1-10-b72eb22a1215@gmail.com> X-BeenThere: linux-phy@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Linux Phy Mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-phy" Errors-To: linux-phy-bounces+linux-phy=archiver.kernel.org@lists.infradead.org On Sun, Mar 22, 2026 at 06:54:28PM -0700, Dmitry Torokhov wrote: > All users of class_find_device_by_of_node() have been converted to > using class_find_device_by_fwnode(). Remove the former. > > Signed-off-by: Dmitry Torokhov > --- > include/linux/device/class.h | 12 ------------ > 1 file changed, 12 deletions(-) Acked-by: Greg Kroah-Hartman -- linux-phy mailing list linux-phy@lists.infradead.org https://lists.infradead.org/mailman/listinfo/linux-phy