From patchwork Wed Jan 18 10:15:13 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 13106039 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 5AC97C004D4 for ; Wed, 18 Jan 2023 10:17:21 +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:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=zUAWohXN68spX37dGi27qPP0ANNelpyaN7iTpIQKLPU=; b=QScmmEtkLK8seE ickzRtKDF9fhkY8nCu0luYImKt76Ddne+3pe/i8hqQrfaU8uufL2vw6dWtB0ObIYQ2Zcd8MJxxkih dkRvH8EEp3uVO7d/iQtWqign3VLQJAztznEZLBX4pj+uedOktyvG3AGzzSZIQn1vdSW5rlkUollul L9r94ki6+gFFFXheui8LjhQEKDtVpsJpDj+qyGzoJIK6HTEhTws8PC0/teg28vdrYkdsx9kzn0hpU jJDVCXBf0HmO+3xvbgCaTulZu8XUEVWlIxC/i7SRrt/l233S5PPw9Xt77p55SwU5trFLcNwF90P1U lBk3B6RuFpuJ62uGlukw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1pI5UL-000Inu-8m; Wed, 18 Jan 2023 10:16:13 +0000 Received: from xavier.telenet-ops.be ([2a02:1800:120:4::f00:14]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1pI5U0-000IfD-Aw for linux-arm-kernel@lists.infradead.org; Wed, 18 Jan 2023 10:15:55 +0000 Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed50:4745:2e6d:e3a6:3327]) by xavier.telenet-ops.be with bizsmtp id AAFN290042zf9gW01AFNxL; Wed, 18 Jan 2023 11:15:42 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1pI5TQ-005aIN-M1; Wed, 18 Jan 2023 11:15:22 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1pI5TV-001JVg-Uw; Wed, 18 Jan 2023 11:15:21 +0100 From: Geert Uytterhoeven To: Madalin Bucur , "David S . Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Horatiu Vultur , UNGLinuxDriver@microchip.com, Thierry Reding , Lorenzo Pieralisi , Rob Herring , =?utf-8?q?Krzysztof_Wilczy=C5=84ski?= , Bjorn Helgaas , Jonathan Hunter , Vinod Koul , Kishon Vijay Abraham I , Alan Stern , Greg Kroah-Hartman , Krzysztof Kozlowski , Alim Akhtar , Siddharth Vadapalli , Russell King Cc: netdev@vger.kernel.org, linux-tegra@vger.kernel.org, linux-pci@vger.kernel.org, linux-phy@lists.infradead.org, linux-usb@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH treewide 0/7] phy: Add devm_of_phy_optional_get() helper Date: Wed, 18 Jan 2023 11:15:13 +0100 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230118_021552_635303_A187EDF7 X-CRM114-Status: GOOD ( 16.65 ) 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: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi all, While there exist several optional_get() PHY helper functions, there is no optional variant of devm_of_phy_get(), leading to several drivers implementing this theirselves, sometimes in buggy ways. Hence this series introduces a devm_of_phy_optional_get() helper(), and converts existing users of devm_of_phy_get() where appropriate. This series been compile-tested only, but the new helper itself has been tested with a new user I am about to submit. Thanks for your comments! Geert Uytterhoeven (7): phy: Add devm_of_phy_optional_get() helper net: fman: memac: Convert to devm_of_phy_optional_get() net: lan966x: Convert to devm_of_phy_optional_get() net: ethernet: ti: am65-cpsw: Convert to devm_of_phy_optional_get() PCI: tegra: Convert to devm_of_phy_optional_get() usb: host: ehci-exynos: Convert to devm_of_phy_optional_get() usb: host: ohci-exynos: Convert to devm_of_phy_optional_get() .../net/ethernet/freescale/fman/fman_memac.c | 8 +++--- .../ethernet/microchip/lan966x/lan966x_main.c | 5 ++-- drivers/net/ethernet/ti/am65-cpsw-nuss.c | 6 ++--- drivers/pci/controller/pci-tegra.c | 5 +--- drivers/phy/phy-core.c | 26 +++++++++++++++++++ drivers/usb/host/ehci-exynos.c | 24 +++++------------ drivers/usb/host/ohci-exynos.c | 24 +++++------------ include/linux/phy/phy.h | 9 ++++++ 8 files changed, 59 insertions(+), 48 deletions(-)