netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next v2 00/11] net: stmmac: Convert to platform remove callback returning void
@ 2023-05-08 14:26 Uwe Kleine-König
  2023-05-08 14:26 ` [PATCH net-next v2 01/11] net: stmmac: Make stmmac_pltfr_remove() return void Uwe Kleine-König
                   ` (12 more replies)
  0 siblings, 13 replies; 23+ messages in thread
From: Uwe Kleine-König @ 2023-05-08 14:26 UTC (permalink / raw)
  To: Giuseppe Cavallaro, Alexandre Torgue, Jose Abreu, David S. Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Maxime Coquelin,
	Shawn Guo, Sascha Hauer, Vladimir Zapolskiy, Neil Armstrong,
	Kevin Hilman, Vinod Koul, Emil Renner Berthing, Samin Guo,
	Chen-Yu Tsai, Jernej Skrabec, Samuel Holland, Nobuhiro Iwamatsu,
	Matthias Brugger, Thierry Reding, Jonathan Hunter
  Cc: Fabio Estevam, NXP Linux Team, Jerome Brunet, Martin Blumenstingl,
	Bhupesh Sharma, AngeloGioacchino Del Regno, netdev, linux-stm32,
	linux-arm-kernel, kernel, linux-amlogic, linux-oxnas, linux-sunxi,
	linux-mediatek, linux-tegra

Hello,

(implicit) v1 of this series is available at
https://lore.kernel.org/netdev/20230402143025.2524443-1-u.kleine-koenig@pengutronix.de
.

Changes since then:

 - Added various Reviewed-by: and Acked-by: tags received for v1
 - Removed a variable in an earlier patch to make all intermediate steps
   compilable, spotted by Simon Horman
 - Rebased to v6.4-rc1 (which needed a slight adaption to cope for
   4bd3bb7b4526 ("net: stmmac: Add glue layer for StarFive JH7110 SoC"))

Best regards
Uwe

Uwe Kleine-König (11):
  net: stmmac: Make stmmac_pltfr_remove() return void
  net: stmmac: dwmac-visconti: Make visconti_eth_clock_remove() return
    void
  net: stmmac: dwmac-qcom-ethqos: Drop an if with an always false
    condition
  net: stmmac: dwmac-visconti: Convert to platform remove callback
    returning void
  net: stmmac: dwmac-dwc-qos-eth: Convert to platform remove callback
    returning void
  net: stmmac: dwmac-qcom-ethqos: Convert to platform remove callback
    returning void
  net: stmmac: dwmac-rk: Convert to platform remove callback returning
    void
  net: stmmac: dwmac-sti: Convert to platform remove callback returning
    void
  net: stmmac: dwmac-stm32: Convert to platform remove callback
    returning void
  net: stmmac: dwmac-sun8i: Convert to platform remove callback
    returning void
  net: stmmac: dwmac-tegra: Convert to platform remove callback
    returning void

 .../ethernet/stmicro/stmmac/dwmac-anarion.c   |  2 +-
 .../stmicro/stmmac/dwmac-dwc-qos-eth.c        |  6 ++----
 .../ethernet/stmicro/stmmac/dwmac-generic.c   |  2 +-
 .../net/ethernet/stmicro/stmmac/dwmac-imx.c   |  2 +-
 .../ethernet/stmicro/stmmac/dwmac-ingenic.c   |  2 +-
 .../stmicro/stmmac/dwmac-intel-plat.c         |  9 +++------
 .../ethernet/stmicro/stmmac/dwmac-ipq806x.c   |  2 +-
 .../ethernet/stmicro/stmmac/dwmac-lpc18xx.c   |  2 +-
 .../ethernet/stmicro/stmmac/dwmac-mediatek.c  |  9 +++------
 .../net/ethernet/stmicro/stmmac/dwmac-meson.c |  2 +-
 .../ethernet/stmicro/stmmac/dwmac-meson8b.c   |  2 +-
 .../net/ethernet/stmicro/stmmac/dwmac-oxnas.c |  2 +-
 .../stmicro/stmmac/dwmac-qcom-ethqos.c        | 15 ++++-----------
 .../net/ethernet/stmicro/stmmac/dwmac-rk.c    |  6 ++----
 .../ethernet/stmicro/stmmac/dwmac-socfpga.c   |  2 +-
 .../ethernet/stmicro/stmmac/dwmac-starfive.c  |  2 +-
 .../net/ethernet/stmicro/stmmac/dwmac-sti.c   |  6 ++----
 .../net/ethernet/stmicro/stmmac/dwmac-stm32.c |  6 ++----
 .../net/ethernet/stmicro/stmmac/dwmac-sun8i.c |  6 ++----
 .../net/ethernet/stmicro/stmmac/dwmac-sunxi.c |  2 +-
 .../net/ethernet/stmicro/stmmac/dwmac-tegra.c |  6 ++----
 .../ethernet/stmicro/stmmac/dwmac-visconti.c  | 19 +++++--------------
 .../ethernet/stmicro/stmmac/stmmac_platform.c |  4 +---
 .../ethernet/stmicro/stmmac/stmmac_platform.h |  2 +-
 24 files changed, 41 insertions(+), 77 deletions(-)

base-commit: ac9a78681b921877518763ba0e89202254349d1b
-- 
2.39.2


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

end of thread, other threads:[~2023-05-10  6:30 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-08 14:26 [PATCH net-next v2 00/11] net: stmmac: Convert to platform remove callback returning void Uwe Kleine-König
2023-05-08 14:26 ` [PATCH net-next v2 01/11] net: stmmac: Make stmmac_pltfr_remove() return void Uwe Kleine-König
2023-05-08 14:47   ` Peppe CAVALLARO
2023-05-08 17:19     ` Uwe Kleine-König
2023-05-08 19:38   ` Martin Blumenstingl
2023-05-08 14:26 ` [PATCH net-next v2 02/11] net: stmmac: dwmac-visconti: Make visconti_eth_clock_remove() " Uwe Kleine-König
2023-05-08 19:33   ` Simon Horman
2023-05-09  1:33   ` nobuhiro1.iwamatsu
2023-05-08 14:26 ` [PATCH net-next v2 03/11] net: stmmac: dwmac-qcom-ethqos: Drop an if with an always false condition Uwe Kleine-König
2023-05-08 20:26   ` Michal Kubiak
2023-05-08 14:26 ` [PATCH net-next v2 04/11] net: stmmac: dwmac-visconti: Convert to platform remove callback returning void Uwe Kleine-König
2023-05-09  2:28   ` nobuhiro1.iwamatsu
2023-05-08 14:26 ` [PATCH net-next v2 05/11] net: stmmac: dwmac-dwc-qos-eth: " Uwe Kleine-König
2023-05-08 14:26 ` [PATCH net-next v2 06/11] net: stmmac: dwmac-qcom-ethqos: " Uwe Kleine-König
2023-05-09  7:51   ` Bhupesh Sharma
2023-05-10  6:29     ` Uwe Kleine-König
2023-05-08 14:26 ` [PATCH net-next v2 07/11] net: stmmac: dwmac-rk: " Uwe Kleine-König
2023-05-08 14:26 ` [PATCH net-next v2 08/11] net: stmmac: dwmac-sti: " Uwe Kleine-König
2023-05-08 14:26 ` [PATCH net-next v2 09/11] net: stmmac: dwmac-stm32: " Uwe Kleine-König
2023-05-08 14:26 ` [PATCH net-next v2 10/11] net: stmmac: dwmac-sun8i: " Uwe Kleine-König
2023-05-08 14:26 ` [PATCH net-next v2 11/11] net: stmmac: dwmac-tegra: " Uwe Kleine-König
2023-05-08 20:30 ` [PATCH net-next v2 00/11] net: stmmac: " Michal Kubiak
2023-05-10  3:00 ` patchwork-bot+netdevbpf

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).