All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yang Yingliang <yangyingliang@huawei.com>
To: <linux-spi@vger.kernel.org>
Cc: <broonie@kernel.org>, <geert@linux-m68k.org>, <lukas@wunner.de>,
	<yangyingliang@huawei.com>
Subject: [PATCH -next v2 00/21] spi: switch to use modern name (part1)
Date: Mon, 7 Aug 2023 22:06:56 +0800	[thread overview]
Message-ID: <20230807140717.3484180-1-yangyingliang@huawei.com> (raw)

I'm trying to rename the legacy name to modern name used in SPI drivers,
this is part1 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.

v1 -> v2:
  patch #10 rebase on latest next branch.

Yang Yingliang (21):
  spi: amd: switch to use modern name
  spi: aspeed: switch to use modern name
  spi: spi-axi-spi-engine: switch to use modern name
  spi: bcm-qspi: switch to use modern name
  spi: bcm2835: switch to use modern name
  spi: bcm2835aux: switch to use modern name
  spi: bcm63xx-hsspi: switch to use modern name
  spi: bcm63xx: switch to use modern name
  spi: butterfly: switch to use modern name
  spi: cadence-quadspi: switch to use modern name
  spi: cadence-xspi: switch to use modern name
  spi: cadence: switch to use modern name
  spi: clps711x: switch to use modern name
  spi: octeon: switch to use modern name
  spi: spi-cavium-thunderx: switch to use modern name
  spi: coldfire-qspi: switch to use modern name
  spi: davinci: switch to use modern name
  spi: dln2: switch to use modern name
  spi: dw: switch to use modern name
  spi: hisi-kunpeng: switch to use modern name
  spi: npcm-fiu: switch to use modern name

 drivers/spi/spi-amd.c             |  50 ++++++-------
 drivers/spi/spi-aspeed-smc.c      |  14 ++--
 drivers/spi/spi-axi-spi-engine.c  |  58 ++++++++--------
 drivers/spi/spi-bcm-qspi.c        |  64 ++++++++---------
 drivers/spi/spi-bcm2835.c         | 112 +++++++++++++++---------------
 drivers/spi/spi-bcm2835aux.c      |  84 +++++++++++-----------
 drivers/spi/spi-bcm63xx-hsspi.c   |  86 +++++++++++------------
 drivers/spi/spi-bcm63xx.c         |  68 +++++++++---------
 drivers/spi/spi-butterfly.c       |  18 ++---
 drivers/spi/spi-cadence-quadspi.c |  44 ++++++------
 drivers/spi/spi-cadence-xspi.c    |  30 ++++----
 drivers/spi/spi-cadence.c         |  70 +++++++++----------
 drivers/spi/spi-cavium-octeon.c   |  32 ++++-----
 drivers/spi/spi-cavium-thunderx.c |  32 ++++-----
 drivers/spi/spi-clps711x.c        |  42 +++++------
 drivers/spi/spi-coldfire-qspi.c   |  66 +++++++++---------
 drivers/spi/spi-davinci.c         |  76 ++++++++++----------
 drivers/spi/spi-dln2.c            |  94 ++++++++++++-------------
 drivers/spi/spi-dw-core.c         | 112 +++++++++++++++---------------
 drivers/spi/spi-dw-dma.c          |  22 +++---
 drivers/spi/spi-dw-mmio.c         |  10 +--
 drivers/spi/spi-dw.h              |   4 +-
 drivers/spi/spi-hisi-kunpeng.c    |  84 +++++++++++-----------
 drivers/spi/spi-npcm-fiu.c        |  20 +++---
 24 files changed, 646 insertions(+), 646 deletions(-)

-- 
2.25.1


             reply	other threads:[~2023-08-07 14:10 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-07 14:06 Yang Yingliang [this message]
2023-08-07 14:06 ` [PATCH -next v2 01/21] spi: amd: switch to use modern name Yang Yingliang
2023-08-07 14:06 ` [PATCH -next v2 02/21] spi: aspeed: " Yang Yingliang
2023-08-07 14:06 ` [PATCH -next v2 03/21] spi: spi-axi-spi-engine: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 04/21] spi: bcm-qspi: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 05/21] spi: bcm2835: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 06/21] spi: bcm2835aux: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 07/21] spi: bcm63xx-hsspi: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 08/21] spi: bcm63xx: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 09/21] spi: butterfly: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 10/21] spi: cadence-quadspi: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 11/21] spi: cadence-xspi: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 12/21] spi: cadence: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 13/21] spi: clps711x: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 14/21] spi: octeon: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 15/21] spi: spi-cavium-thunderx: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 16/21] spi: coldfire-qspi: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 17/21] spi: davinci: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 18/21] spi: dln2: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 19/21] spi: dw: " Yang Yingliang
2023-08-15 11:36   ` Geert Uytterhoeven
2023-08-16  3:45     ` Yang Yingliang
2023-08-16  7:17       ` Geert Uytterhoeven
2023-08-16  9:38         ` Serge Semin
2023-08-16 10:03           ` Geert Uytterhoeven
2023-08-16  9:24       ` Serge Semin
2023-08-16  9:29         ` Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 20/21] spi: hisi-kunpeng: " Yang Yingliang
2023-08-07 14:07 ` [PATCH -next v2 21/21] spi: npcm-fiu: " Yang Yingliang
2023-08-07 21:57 ` (subset) [PATCH -next v2 00/21] spi: switch to use modern name (part1) Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230807140717.3484180-1-yangyingliang@huawei.com \
    --to=yangyingliang@huawei.com \
    --cc=broonie@kernel.org \
    --cc=geert@linux-m68k.org \
    --cc=linux-spi@vger.kernel.org \
    --cc=lukas@wunner.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.