linux-phy.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/31] phy: Convert to platform remove callback returning void
@ 2023-03-07 11:58 Uwe Kleine-König
  2023-03-07 11:58 ` [PATCH 01/31] phy: allwinner: phy-sun4i-usb: " Uwe Kleine-König
                   ` (31 more replies)
  0 siblings, 32 replies; 42+ messages in thread
From: Uwe Kleine-König @ 2023-03-07 11:58 UTC (permalink / raw)
  To: Vinod Koul, Kishon Vijay Abraham I, Chen-Yu Tsai, Jernej Skrabec,
	Samuel Holland, Andre Przywara, Wolfram Sang, Icenowy Zheng,
	Justin Chen, Al Cooper, Pratyush Yadav, Rahul T R,
	Swapnil Jakhade, Lars-Peter Clausen, Shawn Guo, Sascha Hauer,
	Liu Ying, Yuan Can, Chun-Kuang Hu, Philipp Zabel, Chunfeng Yun,
	Matthias Brugger, Thomas Gleixner, Allison Randal,
	Greg Kroah-Hartman, Miaoqian Lin, Andy Gross, Bjorn Andersson,
	Yoshihiro Shimoda, Heiko Stuebner, Maxime Coquelin,
	Alexandre Torgue, Amelie Delaunay, Dan Carpenter, Fabrice Gasnier,
	JC Kuo, Thierry Reding, Jonathan Hunter, Roger Quadros,
	Matt Ranostay, Sinthu Raja, Vignesh Raghavendra, Tanmay Patil,
	Siddharth Vadapalli, Lv Ruyi
  Cc: linux-phy, linux-arm-kernel, linux-sunxi, kernel,
	Broadcom internal kernel review list, Fabio Estevam,
	NXP Linux Team, AngeloGioacchino Del Regno, dri-devel,
	linux-mediatek, Konrad Dybcio, linux-arm-msm, linux-renesas-soc,
	linux-rockchip, linux-stm32, linux-tegra

Hello,

this patch series adapts the platform drivers below drivers/phy to use the
.remove_new() callback. Compared to the traditional .remove() callback
.remove_new() returns no value. This is a good thing because the driver core
doesn't (and cannot) cope for errors during remove. The only effect of a
non-zero return value in .remove() is that the driver core emits a warning. The
device is removed anyhow and an early return from .remove() usually yields a
resource leak.

By changing the remove callback to return void driver authors cannot
reasonably assume any more that there is some kind of cleanup later.

All drivers in drivers/spmi returned zero unconditionally in their remove
callback, so they could all be converted trivially to .remove_new().

Note that this series depends on commit 5c5a7680e67b ("platform: Provide
a remove callback that returns no value") which is included in v6.3-rc1.

Best regards
Uwe

Uwe Kleine-König (31):
  phy: allwinner: phy-sun4i-usb: Convert to platform remove callback
    returning void
  phy: broadcom: phy-brcm-usb: Convert to platform remove callback
    returning void
  phy: cadence: cdns-dphy: Convert to platform remove callback returning
    void
  phy: cadence: phy-cadence-sierra: Convert to platform remove callback
    returning void
  phy: cadence: phy-cadence-torrent: Convert to platform remove callback
    returning void
  phy: freescale: phy-fsl-imx8qm-lvds-phy: Convert to platform remove
    callback returning void
  phy: intel: phy-intel-lgm-combo: Convert to platform remove callback
    returning void
  phy: mediatek: phy-mtk-mipi-dsi: Convert to platform remove callback
    returning void
  phy: motorola: phy-cpcap-usb: Convert to platform remove callback
    returning void
  phy: motorola: phy-mapphone-mdm6600: Convert to platform remove
    callback returning void
  phy: phy-lgm-usb: Convert to platform remove callback returning void
  phy: qualcomm: phy-qcom-apq8064-sata: Convert to platform remove
    callback returning void
  phy: qualcomm: phy-qcom-eusb2-repeater: Convert to platform remove
    callback returning void
  phy: qualcomm: phy-qcom-ipq806x-sata: Convert to platform remove
    callback returning void
  phy: renesas: phy-rcar-gen3-pcie: Convert to platform remove callback
    returning void
  phy: renesas: phy-rcar-gen3-usb2: Convert to platform remove callback
    returning void
  phy: renesas: phy-rcar-gen3-usb3: Convert to platform remove callback
    returning void
  phy: renesas: r8a779f0-ether-serdes: Convert to platform remove
    callback returning void
  phy: rockchip: phy-rockchip-inno-csidphy: Convert to platform remove
    callback returning void
  phy: rockchip: phy-rockchip-inno-dsidphy: Convert to platform remove
    callback returning void
  phy: rockchip: phy-rockchip-inno-hdmi: Convert to platform remove
    callback returning void
  phy: rockchip: phy-rockchip-typec: Convert to platform remove callback
    returning void
  phy: st: phy-stm32-usbphyc: Convert to platform remove callback
    returning void
  phy: tegra: xusb: Convert to platform remove callback returning void
  phy: ti: phy-am654-serdes: Convert to platform remove callback
    returning void
  phy: ti: phy-da8xx-usb: Convert to platform remove callback returning
    void
  phy: ti: phy-dm816x-usb: Convert to platform remove callback returning
    void
  phy: ti: phy-j721e-wiz: Convert to platform remove callback returning
    void
  phy: ti: phy-omap-usb2: Convert to platform remove callback returning
    void
  phy: ti: phy-ti-pipe3: Convert to platform remove callback returning
    void
  phy: ti: phy-twl4030-usb: Convert to platform remove callback
    returning void

 drivers/phy/allwinner/phy-sun4i-usb.c            | 6 ++----
 drivers/phy/broadcom/phy-brcm-usb.c              | 6 ++----
 drivers/phy/cadence/cdns-dphy.c                  | 6 ++----
 drivers/phy/cadence/phy-cadence-sierra.c         | 6 ++----
 drivers/phy/cadence/phy-cadence-torrent.c        | 6 ++----
 drivers/phy/freescale/phy-fsl-imx8qm-lvds-phy.c  | 6 ++----
 drivers/phy/intel/phy-intel-lgm-combo.c          | 5 ++---
 drivers/phy/mediatek/phy-mtk-mipi-dsi.c          | 5 ++---
 drivers/phy/motorola/phy-cpcap-usb.c             | 6 ++----
 drivers/phy/motorola/phy-mapphone-mdm6600.c      | 6 ++----
 drivers/phy/phy-lgm-usb.c                        | 6 ++----
 drivers/phy/qualcomm/phy-qcom-apq8064-sata.c     | 6 ++----
 drivers/phy/qualcomm/phy-qcom-eusb2-repeater.c   | 8 +++-----
 drivers/phy/qualcomm/phy-qcom-ipq806x-sata.c     | 6 ++----
 drivers/phy/renesas/phy-rcar-gen3-pcie.c         | 6 ++----
 drivers/phy/renesas/phy-rcar-gen3-usb2.c         | 6 ++----
 drivers/phy/renesas/phy-rcar-gen3-usb3.c         | 6 ++----
 drivers/phy/renesas/r8a779f0-ether-serdes.c      | 6 ++----
 drivers/phy/rockchip/phy-rockchip-inno-csidphy.c | 6 ++----
 drivers/phy/rockchip/phy-rockchip-inno-dsidphy.c | 6 ++----
 drivers/phy/rockchip/phy-rockchip-inno-hdmi.c    | 6 ++----
 drivers/phy/rockchip/phy-rockchip-typec.c        | 6 ++----
 drivers/phy/st/phy-stm32-usbphyc.c               | 6 ++----
 drivers/phy/tegra/xusb.c                         | 6 ++----
 drivers/phy/ti/phy-am654-serdes.c                | 6 ++----
 drivers/phy/ti/phy-da8xx-usb.c                   | 6 ++----
 drivers/phy/ti/phy-dm816x-usb.c                  | 6 ++----
 drivers/phy/ti/phy-j721e-wiz.c                   | 6 ++----
 drivers/phy/ti/phy-omap-usb2.c                   | 6 ++----
 drivers/phy/ti/phy-ti-pipe3.c                    | 6 ++----
 drivers/phy/ti/phy-twl4030-usb.c                 | 6 ++----
 31 files changed, 63 insertions(+), 123 deletions(-)

base-commit: fe15c26ee26efa11741a7b632e9f23b01aca4cc6
-- 
2.39.1


-- 
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy

^ permalink raw reply	[flat|nested] 42+ messages in thread

end of thread, other threads:[~2023-03-20 11:38 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-07 11:58 [PATCH 00/31] phy: Convert to platform remove callback returning void Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 01/31] phy: allwinner: phy-sun4i-usb: " Uwe Kleine-König
2023-03-14 20:11   ` Jernej Škrabec
2023-03-07 11:58 ` [PATCH 02/31] phy: broadcom: phy-brcm-usb: " Uwe Kleine-König
2023-03-07 16:56   ` Florian Fainelli
2023-03-07 17:06     ` Justin Chen
2023-03-07 11:58 ` [PATCH 03/31] phy: cadence: cdns-dphy: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 04/31] phy: cadence: phy-cadence-sierra: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 05/31] phy: cadence: phy-cadence-torrent: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 06/31] phy: freescale: phy-fsl-imx8qm-lvds-phy: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 07/31] phy: intel: phy-intel-lgm-combo: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 08/31] phy: mediatek: phy-mtk-mipi-dsi: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 09/31] phy: motorola: phy-cpcap-usb: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 10/31] phy: motorola: phy-mapphone-mdm6600: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 11/31] phy: phy-lgm-usb: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 12/31] phy: qualcomm: phy-qcom-apq8064-sata: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 13/31] phy: qualcomm: phy-qcom-eusb2-repeater: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 14/31] phy: qualcomm: phy-qcom-ipq806x-sata: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 15/31] phy: renesas: phy-rcar-gen3-pcie: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 16/31] phy: renesas: phy-rcar-gen3-usb2: " Uwe Kleine-König
2023-03-07 13:35   ` Geert Uytterhoeven
2023-03-07 11:58 ` [PATCH 17/31] phy: renesas: phy-rcar-gen3-usb3: " Uwe Kleine-König
2023-03-07 13:36   ` Geert Uytterhoeven
2023-03-07 11:58 ` [PATCH 18/31] phy: renesas: r8a779f0-ether-serdes: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 19/31] phy: rockchip: phy-rockchip-inno-csidphy: " Uwe Kleine-König
2023-03-07 12:02   ` Heiko Stübner
2023-03-07 11:58 ` [PATCH 20/31] phy: rockchip: phy-rockchip-inno-dsidphy: " Uwe Kleine-König
2023-03-07 12:02   ` Heiko Stübner
2023-03-07 11:58 ` [PATCH 21/31] phy: rockchip: phy-rockchip-inno-hdmi: " Uwe Kleine-König
2023-03-07 12:02   ` Heiko Stübner
2023-03-07 11:58 ` [PATCH 22/31] phy: rockchip: phy-rockchip-typec: " Uwe Kleine-König
2023-03-07 12:02   ` Heiko Stübner
2023-03-07 11:58 ` [PATCH 23/31] phy: st: phy-stm32-usbphyc: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 24/31] phy: tegra: xusb: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 25/31] phy: ti: phy-am654-serdes: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 26/31] phy: ti: phy-da8xx-usb: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 27/31] phy: ti: phy-dm816x-usb: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 28/31] phy: ti: phy-j721e-wiz: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 29/31] phy: ti: phy-omap-usb2: " Uwe Kleine-König
2023-03-07 11:58 ` [PATCH 30/31] phy: ti: phy-ti-pipe3: " Uwe Kleine-König
2023-03-07 11:59 ` [PATCH 31/31] phy: ti: phy-twl4030-usb: " Uwe Kleine-König
2023-03-20 11:38 ` [PATCH 00/31] phy: " Vinod Koul

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).