linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next 00/24] spi: switch to use modern name (part4)
@ 2023-08-16  9:39 Yang Yingliang
  2023-08-16  9:39 ` [PATCH -next 01/24] spi: orion: switch to use modern name Yang Yingliang
                   ` (24 more replies)
  0 siblings, 25 replies; 37+ messages in thread
From: Yang Yingliang @ 2023-08-16  9:39 UTC (permalink / raw)
  To: linux-spi; +Cc: broonie, geert, lukas, yangyingliang

I'm trying to rename the legacy name to modern name used in SPI drivers,
this is part4 patchset.

After introducing devm_spi_alloc_host/spi_alloc_host(), the legacy
named function devm_spi_alloc_master/spi_alloc_master() can be replaced.
And also change other legacy name master/slave to modern name host/target
or controller. Each patch compile test passed.

Yang Yingliang (24):
  spi: orion: switch to use modern name
  spi: mchp-pci1xxxx: switch to use modern name
  spi: pic32-sqi: switch to use modern name
  spi: pic32: switch to use modern name
  spi: spl022: switch to use modern name
  spi: ppc4xx: switch to use modern name
  spi: pxa2xx: switch to use modern name
  spi: spi-qcom-qspi: switch to use modern name
  spi: qup: switch to use modern name
  spi: rb4xx: switch to use modern name
  spi: realtek-rtl: switch to use devm_spi_alloc_host()
  spi: rockchip-sfc: switch to use modern name
  spi: rockchip: switch to use modern name
  spi: rpc-if: switch to use devm_spi_alloc_host()
  spi: rspi: switch to use modern name
  spi: rzv2m-csi: switch to use modern name
  spi: s3c64xx: switch to use modern name
  spi: sc18is602: switch to use modern name
  spi: sh-hspi: switch to use modern name
  spi: sh-msiof: switch to use modern name
  spi: sh-sci: switch to use modern name
  spi: sh: switch to use modern name
  spi: sifive: switch to use modern name
  spi: spi-sn-f-ospi: switch to use modern name

 drivers/spi/spi-orion.c        |  90 +++++++++---------
 drivers/spi/spi-pci1xxxx.c     |  14 +--
 drivers/spi/spi-pic32-sqi.c    |  86 ++++++++---------
 drivers/spi/spi-pic32.c        | 158 +++++++++++++++----------------
 drivers/spi/spi-pl022.c        |  96 +++++++++----------
 drivers/spi/spi-ppc4xx.c       |  44 ++++-----
 drivers/spi/spi-pxa2xx.c       |  24 ++---
 drivers/spi/spi-qcom-qspi.c    |  80 ++++++++--------
 drivers/spi/spi-qup.c          | 166 ++++++++++++++++-----------------
 drivers/spi/spi-rb4xx.c        |  36 +++----
 drivers/spi/spi-realtek-rtl.c  |   2 +-
 drivers/spi/spi-rockchip-sfc.c |  34 +++----
 drivers/spi/spi-rockchip.c     |  58 ++++++------
 drivers/spi/spi-rpc-if.c       |   2 +-
 drivers/spi/spi-rspi.c         |  10 +-
 drivers/spi/spi-rzv2m-csi.c    |  10 +-
 drivers/spi/spi-s3c64xx.c      | 130 +++++++++++++-------------
 drivers/spi/spi-sc18is602.c    |  50 +++++-----
 drivers/spi/spi-sh-hspi.c      |   6 +-
 drivers/spi/spi-sh-msiof.c     |  54 +++++------
 drivers/spi/spi-sh-sci.c       |  24 ++---
 drivers/spi/spi-sh.c           |  34 +++----
 drivers/spi/spi-sifive.c       |  82 ++++++++--------
 drivers/spi/spi-sn-f-ospi.c    |   4 +-
 include/linux/spi/pxa2xx_spi.h |   4 +-
 include/linux/spi/sh_msiof.h   |   4 +-
 26 files changed, 651 insertions(+), 651 deletions(-)

-- 
2.25.1


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

end of thread, other threads:[~2023-08-18 10:59 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-16  9:39 [PATCH -next 00/24] spi: switch to use modern name (part4) Yang Yingliang
2023-08-16  9:39 ` [PATCH -next 01/24] spi: orion: switch to use modern name Yang Yingliang
2023-08-16  9:39 ` [PATCH -next 02/24] spi: mchp-pci1xxxx: " Yang Yingliang
2023-08-16  9:39 ` [PATCH -next 03/24] spi: pic32-sqi: " Yang Yingliang
2023-08-16  9:39 ` [PATCH -next 04/24] spi: pic32: " Yang Yingliang
2023-08-16 10:18   ` Geert Uytterhoeven
2023-08-16  9:39 ` [PATCH -next 05/24] spi: spl022: " Yang Yingliang
2023-08-16  9:39 ` [PATCH -next 06/24] spi: ppc4xx: " Yang Yingliang
2023-08-16  9:39 ` [PATCH -next 07/24] spi: pxa2xx: " Yang Yingliang
2023-08-16  9:39 ` [PATCH -next 08/24] spi: spi-qcom-qspi: " Yang Yingliang
2023-08-16  9:39 ` [PATCH -next 09/24] spi: qup: " Yang Yingliang
2023-08-16  9:39 ` [PATCH -next 10/24] spi: rb4xx: " Yang Yingliang
2023-08-16  9:40 ` [PATCH -next 11/24] spi: realtek-rtl: switch to use devm_spi_alloc_host() Yang Yingliang
2023-08-16  9:40 ` [PATCH -next 12/24] spi: rockchip-sfc: switch to use modern name Yang Yingliang
2023-08-16  9:40 ` [PATCH -next 13/24] spi: rockchip: " Yang Yingliang
2023-08-16 10:20   ` Geert Uytterhoeven
2023-08-16 10:38     ` Heiko Stübner
2023-08-16  9:40 ` [PATCH -next 14/24] spi: rpc-if: switch to use devm_spi_alloc_host() Yang Yingliang
2023-08-16 10:28   ` Geert Uytterhoeven
2023-08-16  9:40 ` [PATCH -next 15/24] spi: rspi: switch to use modern name Yang Yingliang
2023-08-16 10:34   ` Geert Uytterhoeven
2023-08-16  9:40 ` [PATCH -next 16/24] spi: rzv2m-csi: " Yang Yingliang
2023-08-16 10:25   ` Geert Uytterhoeven
2023-08-16  9:40 ` [PATCH -next 17/24] spi: s3c64xx: " Yang Yingliang
2023-08-16 10:27   ` Geert Uytterhoeven
2023-08-18 10:58     ` Krzysztof Kozlowski
2023-08-16  9:40 ` [PATCH -next 18/24] spi: sc18is602: " Yang Yingliang
2023-08-16  9:40 ` [PATCH -next 19/24] spi: sh-hspi: " Yang Yingliang
2023-08-16 10:41   ` Geert Uytterhoeven
2023-08-16  9:40 ` [PATCH -next 20/24] spi: sh-msiof: " Yang Yingliang
2023-08-16 10:37   ` Geert Uytterhoeven
2023-08-17  3:18     ` Yang Yingliang
2023-08-16  9:40 ` [PATCH -next 21/24] spi: sh-sci: " Yang Yingliang
2023-08-16  9:40 ` [PATCH -next 22/24] spi: sh: " Yang Yingliang
2023-08-16  9:40 ` [PATCH -next 23/24] spi: sifive: " Yang Yingliang
2023-08-16  9:40 ` [PATCH -next 24/24] spi: spi-sn-f-ospi: " Yang Yingliang
2023-08-16 16:16 ` (subset) [PATCH -next 00/24] spi: switch to use modern name (part4) Mark Brown

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