* [PATCH v2 12/33] mtd: dataflash: Follow renaming of SPI "master" to "controller"
2024-01-22 18:06 [PATCH v2 00/33] spi: get rid of some legacy macros Uwe Kleine-König
@ 2024-01-22 18:07 ` Uwe Kleine-König
2024-01-22 18:13 ` Miquel Raynal
2024-01-22 18:07 ` [PATCH v2 13/33] mtd: rawnand: fsl_elbc: Let .probe retry if local bus is missing Uwe Kleine-König
` (3 subsequent siblings)
4 siblings, 1 reply; 14+ messages in thread
From: Uwe Kleine-König @ 2024-01-22 18:07 UTC (permalink / raw)
To: Mark Brown
Cc: kernel, Miquel Raynal, Richard Weinberger, Vignesh Raghavendra,
Rob Herring, Heiko Stuebner, Michal Simek,
Amit Kumar Mahapatra via Alsa-devel, linux-mtd, linux-kernel,
linux-spi
In commit 8caab75fd2c2 ("spi: Generalize SPI "master" to "controller"")
some functions and struct members were renamed. To not break all drivers
compatibility macros were provided.
To be able to remove these compatibility macros push the renaming into
this driver.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
drivers/mtd/devices/mtd_dataflash.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/devices/mtd_dataflash.c b/drivers/mtd/devices/mtd_dataflash.c
index 0c1b93303618..ec52277e3dd5 100644
--- a/drivers/mtd/devices/mtd_dataflash.c
+++ b/drivers/mtd/devices/mtd_dataflash.c
@@ -638,7 +638,7 @@ static int add_dataflash_otp(struct spi_device *spi, char *name, int nr_pages,
/* name must be usable with cmdlinepart */
sprintf(priv->name, "spi%d.%d-%s",
- spi->master->bus_num, spi_get_chipselect(spi, 0),
+ spi->controller->bus_num, spi_get_chipselect(spi, 0),
name);
device = &priv->mtd;
--
2.43.0
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH v2 12/33] mtd: dataflash: Follow renaming of SPI "master" to "controller"
2024-01-22 18:07 ` [PATCH v2 12/33] mtd: dataflash: Follow renaming of SPI "master" to "controller" Uwe Kleine-König
@ 2024-01-22 18:13 ` Miquel Raynal
0 siblings, 0 replies; 14+ messages in thread
From: Miquel Raynal @ 2024-01-22 18:13 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: Mark Brown, kernel, Richard Weinberger, Vignesh Raghavendra,
Rob Herring, Heiko Stuebner, Michal Simek,
Amit Kumar Mahapatra via Alsa-devel, linux-mtd, linux-kernel,
linux-spi
Hi Uwe,
u.kleine-koenig@pengutronix.de wrote on Mon, 22 Jan 2024 19:07:07 +0100:
> In commit 8caab75fd2c2 ("spi: Generalize SPI "master" to "controller"")
> some functions and struct members were renamed. To not break all drivers
> compatibility macros were provided.
>
> To be able to remove these compatibility macros push the renaming into
> this driver.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
I think I read in the previous thread that Mark would apply them all
through his tree, I am fine with that so here is my Acked-by. In case I
misunderstood the thread or at the end you/Mark prefer to let the
patches go through the trees they normally belong to, just let me know.
Acked-by: Miquel Raynal <miquel.raynal@bootlin.com>
Thanks,
Miquèl
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v2 13/33] mtd: rawnand: fsl_elbc: Let .probe retry if local bus is missing
2024-01-22 18:06 [PATCH v2 00/33] spi: get rid of some legacy macros Uwe Kleine-König
2024-01-22 18:07 ` [PATCH v2 12/33] mtd: dataflash: Follow renaming of SPI "master" to "controller" Uwe Kleine-König
@ 2024-01-22 18:07 ` Uwe Kleine-König
2024-01-22 18:19 ` Miquel Raynal
2024-01-22 18:18 ` [PATCH v2 00/33] spi: get rid of some legacy macros Mark Brown
` (2 subsequent siblings)
4 siblings, 1 reply; 14+ messages in thread
From: Uwe Kleine-König @ 2024-01-22 18:07 UTC (permalink / raw)
To: Mark Brown
Cc: kernel, Miquel Raynal, Richard Weinberger, Vignesh Raghavendra,
Martin Blumenstingl, Geert Uytterhoeven, Heiko Stuebner,
Pali Rohár, linux-mtd, linux-kernel, linux-spi
If during probe fsl_lbc_ctrl_dev is NULL that might just be because the
fsl_lbc driver didn't bind yet. So return -EPROBE_DEFER in this case to
make the driver core retry probing later.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
drivers/mtd/nand/raw/fsl_elbc_nand.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/mtd/nand/raw/fsl_elbc_nand.c b/drivers/mtd/nand/raw/fsl_elbc_nand.c
index 1e3a80f06f33..df6a0d5c86bb 100644
--- a/drivers/mtd/nand/raw/fsl_elbc_nand.c
+++ b/drivers/mtd/nand/raw/fsl_elbc_nand.c
@@ -869,7 +869,8 @@ static int fsl_elbc_nand_probe(struct platform_device *pdev)
struct mtd_info *mtd;
if (!fsl_lbc_ctrl_dev || !fsl_lbc_ctrl_dev->regs)
- return -ENODEV;
+ return dev_err_probe(&pdev->dev, -EPROBE_DEFER, "lbc_ctrl_dev missing\n");
+
lbc = fsl_lbc_ctrl_dev->regs;
dev = fsl_lbc_ctrl_dev->dev;
--
2.43.0
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH v2 13/33] mtd: rawnand: fsl_elbc: Let .probe retry if local bus is missing
2024-01-22 18:07 ` [PATCH v2 13/33] mtd: rawnand: fsl_elbc: Let .probe retry if local bus is missing Uwe Kleine-König
@ 2024-01-22 18:19 ` Miquel Raynal
2024-01-22 21:29 ` Uwe Kleine-König
0 siblings, 1 reply; 14+ messages in thread
From: Miquel Raynal @ 2024-01-22 18:19 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: Mark Brown, kernel, Richard Weinberger, Vignesh Raghavendra,
Martin Blumenstingl, Geert Uytterhoeven, Heiko Stuebner,
Pali Rohár, linux-mtd, linux-kernel, linux-spi
Hi Uwe,
u.kleine-koenig@pengutronix.de wrote on Mon, 22 Jan 2024 19:07:08 +0100:
> If during probe fsl_lbc_ctrl_dev is NULL that might just be because the
> fsl_lbc driver didn't bind yet. So return -EPROBE_DEFER in this case to
> make the driver core retry probing later.
Despite the probable usefulness of this change, I don't see any
relationship with the current series. So unless there is a good reason
I might take this one through the nand tree.
Also, what about a Fixes/Cc: stable tag here?
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Thanks,
Miquèl
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 13/33] mtd: rawnand: fsl_elbc: Let .probe retry if local bus is missing
2024-01-22 18:19 ` Miquel Raynal
@ 2024-01-22 21:29 ` Uwe Kleine-König
0 siblings, 0 replies; 14+ messages in thread
From: Uwe Kleine-König @ 2024-01-22 21:29 UTC (permalink / raw)
To: Miquel Raynal
Cc: Vignesh Raghavendra, Geert Uytterhoeven, Martin Blumenstingl,
Richard Weinberger, linux-kernel, linux-spi, Mark Brown,
linux-mtd, kernel, Pali Rohár, Heiko Stuebner
[-- Attachment #1.1: Type: text/plain, Size: 1376 bytes --]
Hi Miquèl,
On Mon, Jan 22, 2024 at 07:19:44PM +0100, Miquel Raynal wrote:
> u.kleine-koenig@pengutronix.de wrote on Mon, 22 Jan 2024 19:07:08 +0100:
>
> > If during probe fsl_lbc_ctrl_dev is NULL that might just be because the
> > fsl_lbc driver didn't bind yet. So return -EPROBE_DEFER in this case to
> > make the driver core retry probing later.
>
> Despite the probable usefulness of this change, I don't see any
> relationship with the current series. So unless there is a good reason
> I might take this one through the nand tree.
This patch indeed doesn't belong into this series. It just happend to be
in my tree and shuffled into the middle when I sorted the patches by
subsystem. Note I already sent it separately at
https://lore.kernel.org/linux-mtd/20240115141245.3415035-2-u.kleine-koenig@pengutronix.de
> Also, what about a Fixes/Cc: stable tag here?
The problem exists since
3ab8f2a2e701 ("P4080/eLBC: Make Freescale elbc interrupt common to elbc devices")
which was included in v2.6.37-rc1. At that time there was no
EPROBE_DEFER yet. I think I wouldn't add a Fixes: line for that, but
feel free to add one if you think there should be one.
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | https://www.pengutronix.de/ |
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
[-- Attachment #2: Type: text/plain, Size: 144 bytes --]
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 00/33] spi: get rid of some legacy macros
2024-01-22 18:06 [PATCH v2 00/33] spi: get rid of some legacy macros Uwe Kleine-König
2024-01-22 18:07 ` [PATCH v2 12/33] mtd: dataflash: Follow renaming of SPI "master" to "controller" Uwe Kleine-König
2024-01-22 18:07 ` [PATCH v2 13/33] mtd: rawnand: fsl_elbc: Let .probe retry if local bus is missing Uwe Kleine-König
@ 2024-01-22 18:18 ` Mark Brown
2024-01-22 19:23 ` Jonathan Cameron
2024-01-24 17:13 ` Greg Kroah-Hartman
2024-02-12 15:33 ` (subset) " Mark Brown
4 siblings, 1 reply; 14+ messages in thread
From: Mark Brown @ 2024-01-22 18:18 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: kernel, Moritz Fischer, Wu Hao, Xu Yilun, Tom Rix, linux-fpga,
linux-kernel, Alexander Aring, Stefan Schmidt, Miquel Raynal,
David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
linux-wpan, netdev, Lars-Peter Clausen, Michael Hennerich,
Jonathan Cameron, linux-iio, Dmitry Torokhov, linux-input,
Ulf Hansson, Rayyan Ansari, Andy Shevchenko, Jonathan Cameron,
Martin Tuma, Mauro Carvalho Chehab, linux-media, Sergey Kozlov,
Arnd Bergmann, Greg Kroah-Hartman, Yang Yingliang, linux-mmc,
Richard Weinberger, Vignesh Raghavendra, Rob Herring,
Heiko Stuebner, Michal Simek, Amit Kumar Mahapatra via Alsa-devel,
linux-mtd, Martin Blumenstingl, Geert Uytterhoeven,
Pali Rohár, Simon Horman, Ronald Wahl, Benson Leung,
Tzung-Bi Shih, Guenter Roeck, chrome-platform, Max Filippov,
linux-spi, linux-arm-kernel, Bjorn Andersson, Konrad Dybcio,
linux-arm-msm, Matthias Brugger, AngeloGioacchino Del Regno,
linux-mediatek, Thomas Zimmermann, Javier Martinez Canillas,
Amit Kumar Mahapatra, dri-devel, linux-fbdev, linux-staging,
Viresh Kumar, Rui Miguel Silva, Johan Hovold, Alex Elder,
greybus-dev, Peter Huewe, Jarkko Sakkinen, Jason Gunthorpe,
linux-integrity, Herve Codina, Alan Stern, Aaro Koskinen,
Krzysztof Kozlowski, linux-usb, Helge Deller, Dario Binacchi,
Kalle Valo, Dmitry Antipov, libertas-dev, linux-wireless,
Jonathan Corbet, James Clark, Bjorn Helgaas, linux-doc
[-- Attachment #1.1: Type: text/plain, Size: 329 bytes --]
On Mon, Jan 22, 2024 at 07:06:55PM +0100, Uwe Kleine-König wrote:
> Note that Jonathan Cameron has already applied patch 3 to his tree, it
> didn't appear in a public tree though yet. I still included it here to
> make the kernel build bots happy.
It's also going to be needed for buildability of the end of the series.
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
[-- Attachment #2: Type: text/plain, Size: 144 bytes --]
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 00/33] spi: get rid of some legacy macros
2024-01-22 18:18 ` [PATCH v2 00/33] spi: get rid of some legacy macros Mark Brown
@ 2024-01-22 19:23 ` Jonathan Cameron
2024-01-24 20:02 ` Jonathan Cameron
0 siblings, 1 reply; 14+ messages in thread
From: Jonathan Cameron @ 2024-01-22 19:23 UTC (permalink / raw)
To: Mark Brown
Cc: Uwe Kleine-König, kernel, Moritz Fischer, Wu Hao, Xu Yilun,
Tom Rix, linux-fpga, linux-kernel, Alexander Aring,
Stefan Schmidt, Miquel Raynal, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, linux-wpan, netdev,
Lars-Peter Clausen, Michael Hennerich, linux-iio, Dmitry Torokhov,
linux-input, Ulf Hansson, Rayyan Ansari, Andy Shevchenko,
Jonathan Cameron, Martin Tuma, Mauro Carvalho Chehab, linux-media,
Sergey Kozlov, Arnd Bergmann, Greg Kroah-Hartman, Yang Yingliang,
linux-mmc, Richard Weinberger, Vignesh Raghavendra, Rob Herring,
Heiko Stuebner, Michal Simek, Amit Kumar Mahapatra via Alsa-devel,
linux-mtd, Martin Blumenstingl, Geert Uytterhoeven,
Pali Rohár, Simon Horman, Ronald Wahl, Benson Leung,
Tzung-Bi Shih, Guenter Roeck, chrome-platform, Max Filippov,
linux-spi, linux-arm-kernel, Bjorn Andersson, Konrad Dybcio,
linux-arm-msm, Matthias Brugger, AngeloGioacchino Del Regno,
linux-mediatek, Thomas Zimmermann, Javier Martinez Canillas,
Amit Kumar Mahapatra, dri-devel, linux-fbdev, linux-staging,
Viresh Kumar, Rui Miguel Silva, Johan Hovold, Alex Elder,
greybus-dev, Peter Huewe, Jarkko Sakkinen, Jason Gunthorpe,
linux-integrity, Herve Codina, Alan Stern, Aaro Koskinen,
Krzysztof Kozlowski, linux-usb, Helge Deller, Dario Binacchi,
Kalle Valo, Dmitry Antipov, libertas-dev, linux-wireless,
Jonathan Corbet, James Clark, Bjorn Helgaas, linux-doc
On Mon, 22 Jan 2024 18:18:22 +0000
Mark Brown <broonie@kernel.org> wrote:
> On Mon, Jan 22, 2024 at 07:06:55PM +0100, Uwe Kleine-König wrote:
>
> > Note that Jonathan Cameron has already applied patch 3 to his tree, it
> > didn't appear in a public tree though yet. I still included it here to
> > make the kernel build bots happy.
>
> It's also going to be needed for buildability of the end of the series.
Ah. I thought intent was to split this across all the different trees
then do the final patch only after they were all gone?
I'm fine with it going all in one go if people prefer that.
My tree will be out in a few mins. Was just waiting to rebase on rc1
which I've just done.
Jonathan
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 00/33] spi: get rid of some legacy macros
2024-01-22 19:23 ` Jonathan Cameron
@ 2024-01-24 20:02 ` Jonathan Cameron
0 siblings, 0 replies; 14+ messages in thread
From: Jonathan Cameron @ 2024-01-24 20:02 UTC (permalink / raw)
To: Mark Brown, linux-spi
Cc: Uwe Kleine-König, kernel, Moritz Fischer, Wu Hao, Xu Yilun,
Tom Rix, linux-fpga, linux-kernel, Alexander Aring,
Stefan Schmidt, Miquel Raynal, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, linux-wpan, netdev,
Lars-Peter Clausen, Michael Hennerich, linux-iio, Dmitry Torokhov,
linux-input, Ulf Hansson, Rayyan Ansari, Andy Shevchenko,
Jonathan Cameron, Martin Tuma, Mauro Carvalho Chehab, linux-media,
Sergey Kozlov, Arnd Bergmann, Greg Kroah-Hartman, Yang Yingliang,
linux-mmc, Richard Weinberger, Vignesh Raghavendra, Rob Herring,
Heiko Stuebner, Michal Simek, Amit Kumar Mahapatra via Alsa-devel,
linux-mtd, Martin Blumenstingl, Geert Uytterhoeven,
Pali Rohár, Simon Horman, Ronald Wahl, Benson Leung,
Tzung-Bi Shih, Guenter Roeck, chrome-platform, Max Filippov,
linux-arm-kernel, Bjorn Andersson, Konrad Dybcio, linux-arm-msm,
Matthias Brugger, AngeloGioacchino Del Regno, linux-mediatek,
Thomas Zimmermann, Javier Martinez Canillas, Amit Kumar Mahapatra,
dri-devel, linux-fbdev, linux-staging, Viresh Kumar,
Rui Miguel Silva, Johan Hovold, Alex Elder, greybus-dev,
Peter Huewe, Jarkko Sakkinen, Jason Gunthorpe, linux-integrity,
Herve Codina, Alan Stern, Aaro Koskinen, Krzysztof Kozlowski,
linux-usb, Helge Deller, Dario Binacchi, Kalle Valo,
Dmitry Antipov, libertas-dev, linux-wireless, Jonathan Corbet,
James Clark, Bjorn Helgaas, linux-doc
On Mon, 22 Jan 2024 19:23:43 +0000
Jonathan Cameron <jic23@kernel.org> wrote:
> On Mon, 22 Jan 2024 18:18:22 +0000
> Mark Brown <broonie@kernel.org> wrote:
>
> > On Mon, Jan 22, 2024 at 07:06:55PM +0100, Uwe Kleine-König wrote:
> >
> > > Note that Jonathan Cameron has already applied patch 3 to his tree, it
> > > didn't appear in a public tree though yet. I still included it here to
> > > make the kernel build bots happy.
> >
> > It's also going to be needed for buildability of the end of the series.
>
> Ah. I thought intent was to split this across all the different trees
> then do the final patch only after they were all gone?
>
> I'm fine with it going all in one go if people prefer that.
>
> My tree will be out in a few mins. Was just waiting to rebase on rc1
> which I've just done.
>
> Jonathan
>
Dropped from my tree.
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 00/33] spi: get rid of some legacy macros
2024-01-22 18:06 [PATCH v2 00/33] spi: get rid of some legacy macros Uwe Kleine-König
` (2 preceding siblings ...)
2024-01-22 18:18 ` [PATCH v2 00/33] spi: get rid of some legacy macros Mark Brown
@ 2024-01-24 17:13 ` Greg Kroah-Hartman
2024-01-24 17:22 ` Mark Brown
2024-02-12 15:33 ` (subset) " Mark Brown
4 siblings, 1 reply; 14+ messages in thread
From: Greg Kroah-Hartman @ 2024-01-24 17:13 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: Mark Brown, kernel, Moritz Fischer, Wu Hao, Xu Yilun, Tom Rix,
linux-fpga, linux-kernel, Alexander Aring, Stefan Schmidt,
Miquel Raynal, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, linux-wpan, netdev, Lars-Peter Clausen,
Michael Hennerich, Jonathan Cameron, linux-iio, Dmitry Torokhov,
linux-input, Ulf Hansson, Rayyan Ansari, Andy Shevchenko,
Jonathan Cameron, Martin Tuma, Mauro Carvalho Chehab, linux-media,
Sergey Kozlov, Arnd Bergmann, Yang Yingliang, linux-mmc,
Richard Weinberger, Vignesh Raghavendra, Rob Herring,
Heiko Stuebner, Michal Simek, Amit Kumar Mahapatra via Alsa-devel,
linux-mtd, Martin Blumenstingl, Geert Uytterhoeven,
Pali Rohár, Simon Horman, Ronald Wahl, Benson Leung,
Tzung-Bi Shih, Guenter Roeck, chrome-platform, Max Filippov,
linux-spi, linux-arm-kernel, Bjorn Andersson, Konrad Dybcio,
linux-arm-msm, Matthias Brugger, AngeloGioacchino Del Regno,
linux-mediatek, Thomas Zimmermann, Javier Martinez Canillas,
Amit Kumar Mahapatra, dri-devel, linux-fbdev, linux-staging,
Viresh Kumar, Rui Miguel Silva, Johan Hovold, Alex Elder,
greybus-dev, Peter Huewe, Jarkko Sakkinen, Jason Gunthorpe,
linux-integrity, Herve Codina, Alan Stern, Aaro Koskinen,
Krzysztof Kozlowski, linux-usb, Helge Deller, Dario Binacchi,
Kalle Valo, Dmitry Antipov, libertas-dev, linux-wireless,
Jonathan Corbet, James Clark, Bjorn Helgaas, linux-doc
On Mon, Jan 22, 2024 at 07:06:55PM +0100, Uwe Kleine-König wrote:
> Hello,
>
> this is v2 of this patch set.
>
> Changes since (implicit) v1, sent with Message-Id:
> cover.1705348269.git.u.kleine-koenig@pengutronix.de:
>
> - Rebase to v6.8-rc1
> - Fix a build failure on sh
> - Added the tags received in (implicit) v1.
>
> The slave-mt27xx driver needs some more work. The patch presented here
> is enough however to get rid of the defines handled in patch 32.
> Cleaning that up is out-of-scope for this series, so I'll delay that
> until later.
>
> Note that Jonathan Cameron has already applied patch 3 to his tree, it
> didn't appear in a public tree though yet. I still included it here to
> make the kernel build bots happy.
Are we supposed to take the individual changes in our different
subsystem trees, or do you want them all to go through the spi tree?
Either is fine with me, just need to know.
thanks,
greg k-h
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [PATCH v2 00/33] spi: get rid of some legacy macros
2024-01-24 17:13 ` Greg Kroah-Hartman
@ 2024-01-24 17:22 ` Mark Brown
2024-01-24 17:30 ` Greg Kroah-Hartman
2024-02-01 21:47 ` Jarkko Sakkinen
0 siblings, 2 replies; 14+ messages in thread
From: Mark Brown @ 2024-01-24 17:22 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Uwe Kleine-König, kernel, Moritz Fischer, Wu Hao, Xu Yilun,
Tom Rix, linux-fpga, linux-kernel, Alexander Aring,
Stefan Schmidt, Miquel Raynal, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, linux-wpan, netdev,
Lars-Peter Clausen, Michael Hennerich, Jonathan Cameron,
linux-iio, Dmitry Torokhov, linux-input, Ulf Hansson,
Rayyan Ansari, Andy Shevchenko, Jonathan Cameron, Martin Tuma,
Mauro Carvalho Chehab, linux-media, Sergey Kozlov, Arnd Bergmann,
Yang Yingliang, linux-mmc, Richard Weinberger,
Vignesh Raghavendra, Rob Herring, Heiko Stuebner, Michal Simek,
Amit Kumar Mahapatra via Alsa-devel, linux-mtd,
Martin Blumenstingl, Geert Uytterhoeven, Pali Rohár,
Simon Horman, Ronald Wahl, Benson Leung, Tzung-Bi Shih,
Guenter Roeck, chrome-platform, Max Filippov, linux-spi,
linux-arm-kernel, Bjorn Andersson, Konrad Dybcio, linux-arm-msm,
Matthias Brugger, AngeloGioacchino Del Regno, linux-mediatek,
Thomas Zimmermann, Javier Martinez Canillas, Amit Kumar Mahapatra,
dri-devel, linux-fbdev, linux-staging, Viresh Kumar,
Rui Miguel Silva, Johan Hovold, Alex Elder, greybus-dev,
Peter Huewe, Jarkko Sakkinen, Jason Gunthorpe, linux-integrity,
Herve Codina, Alan Stern, Aaro Koskinen, Krzysztof Kozlowski,
linux-usb, Helge Deller, Dario Binacchi, Kalle Valo,
Dmitry Antipov, libertas-dev, linux-wireless, Jonathan Corbet,
James Clark, Bjorn Helgaas, linux-doc
[-- Attachment #1.1: Type: text/plain, Size: 569 bytes --]
On Wed, Jan 24, 2024 at 09:13:49AM -0800, Greg Kroah-Hartman wrote:
> On Mon, Jan 22, 2024 at 07:06:55PM +0100, Uwe Kleine-König wrote:
> > Note that Jonathan Cameron has already applied patch 3 to his tree, it
> > didn't appear in a public tree though yet. I still included it here to
> > make the kernel build bots happy.
> Are we supposed to take the individual changes in our different
> subsystem trees, or do you want them all to go through the spi tree?
Given that the final patch removes the legacy interfaces I'm expecting
to take them via SPI.
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
[-- Attachment #2: Type: text/plain, Size: 144 bytes --]
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 00/33] spi: get rid of some legacy macros
2024-01-24 17:22 ` Mark Brown
@ 2024-01-24 17:30 ` Greg Kroah-Hartman
2024-02-01 21:47 ` Jarkko Sakkinen
1 sibling, 0 replies; 14+ messages in thread
From: Greg Kroah-Hartman @ 2024-01-24 17:30 UTC (permalink / raw)
To: Mark Brown
Cc: Uwe Kleine-König, kernel, Moritz Fischer, Wu Hao, Xu Yilun,
Tom Rix, linux-fpga, linux-kernel, Alexander Aring,
Stefan Schmidt, Miquel Raynal, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, linux-wpan, netdev,
Lars-Peter Clausen, Michael Hennerich, Jonathan Cameron,
linux-iio, Dmitry Torokhov, linux-input, Ulf Hansson,
Rayyan Ansari, Andy Shevchenko, Jonathan Cameron, Martin Tuma,
Mauro Carvalho Chehab, linux-media, Sergey Kozlov, Arnd Bergmann,
Yang Yingliang, linux-mmc, Richard Weinberger,
Vignesh Raghavendra, Rob Herring, Heiko Stuebner, Michal Simek,
Amit Kumar Mahapatra via Alsa-devel, linux-mtd,
Martin Blumenstingl, Geert Uytterhoeven, Pali Rohár,
Simon Horman, Ronald Wahl, Benson Leung, Tzung-Bi Shih,
Guenter Roeck, chrome-platform, Max Filippov, linux-spi,
linux-arm-kernel, Bjorn Andersson, Konrad Dybcio, linux-arm-msm,
Matthias Brugger, AngeloGioacchino Del Regno, linux-mediatek,
Thomas Zimmermann, Javier Martinez Canillas, Amit Kumar Mahapatra,
dri-devel, linux-fbdev, linux-staging, Viresh Kumar,
Rui Miguel Silva, Johan Hovold, Alex Elder, greybus-dev,
Peter Huewe, Jarkko Sakkinen, Jason Gunthorpe, linux-integrity,
Herve Codina, Alan Stern, Aaro Koskinen, Krzysztof Kozlowski,
linux-usb, Helge Deller, Dario Binacchi, Kalle Valo,
Dmitry Antipov, libertas-dev, linux-wireless, Jonathan Corbet,
James Clark, Bjorn Helgaas, linux-doc
On Wed, Jan 24, 2024 at 05:22:00PM +0000, Mark Brown wrote:
> On Wed, Jan 24, 2024 at 09:13:49AM -0800, Greg Kroah-Hartman wrote:
> > On Mon, Jan 22, 2024 at 07:06:55PM +0100, Uwe Kleine-König wrote:
>
> > > Note that Jonathan Cameron has already applied patch 3 to his tree, it
> > > didn't appear in a public tree though yet. I still included it here to
> > > make the kernel build bots happy.
>
> > Are we supposed to take the individual changes in our different
> > subsystem trees, or do you want them all to go through the spi tree?
>
> Given that the final patch removes the legacy interfaces I'm expecting
> to take them via SPI.
Great, thanks, I'll go ack the subsystem patches that are relevent for
me.
greg k-h
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 00/33] spi: get rid of some legacy macros
2024-01-24 17:22 ` Mark Brown
2024-01-24 17:30 ` Greg Kroah-Hartman
@ 2024-02-01 21:47 ` Jarkko Sakkinen
1 sibling, 0 replies; 14+ messages in thread
From: Jarkko Sakkinen @ 2024-02-01 21:47 UTC (permalink / raw)
To: Mark Brown, Greg Kroah-Hartman
Cc: Uwe Kleine-König, kernel, Moritz Fischer, Wu Hao, Xu Yilun,
Tom Rix, linux-fpga, linux-kernel, Alexander Aring,
Stefan Schmidt, Miquel Raynal, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, linux-wpan, netdev,
Lars-Peter Clausen, Michael Hennerich, Jonathan Cameron,
linux-iio, Dmitry Torokhov, linux-input, Ulf Hansson,
Rayyan Ansari, Andy Shevchenko, Jonathan Cameron, Martin Tuma,
Mauro Carvalho Chehab, linux-media, Sergey Kozlov, Arnd Bergmann,
Yang Yingliang, linux-mmc, Richard Weinberger,
Vignesh Raghavendra, Rob Herring, Heiko Stuebner, Michal Simek,
Amit Kumar Mahapatra via Alsa-devel, linux-mtd,
Martin Blumenstingl, Geert Uytterhoeven, Pali Rohár,
Simon Horman, Ronald Wahl, Benson Leung, Tzung-Bi Shih,
Guenter Roeck, chrome-platform, Max Filippov, linux-spi,
linux-arm-kernel, Bjorn Andersson, Konrad Dybcio, linux-arm-msm,
Matthias Brugger, AngeloGioacchino Del Regno, linux-mediatek,
Thomas Zimmermann, Javier Martinez Canillas, Amit Kumar Mahapatra,
dri-devel, linux-fbdev, linux-staging, Viresh Kumar,
Rui Miguel Silva, Johan Hovold, Alex Elder, greybus-dev,
Peter Huewe, Jason Gunthorpe, linux-integrity, Herve Codina,
Alan Stern, Aaro Koskinen, Krzysztof Kozlowski, linux-usb,
Helge Deller, Dario Binacchi, Kalle Valo, Dmitry Antipov,
libertas-dev, linux-wireless, Jonathan Corbet, James Clark,
Bjorn Helgaas, linux-doc
On Wed Jan 24, 2024 at 7:22 PM EET, Mark Brown wrote:
> On Wed, Jan 24, 2024 at 09:13:49AM -0800, Greg Kroah-Hartman wrote:
> > On Mon, Jan 22, 2024 at 07:06:55PM +0100, Uwe Kleine-König wrote:
>
> > > Note that Jonathan Cameron has already applied patch 3 to his tree, it
> > > didn't appear in a public tree though yet. I still included it here to
> > > make the kernel build bots happy.
>
> > Are we supposed to take the individual changes in our different
> > subsystem trees, or do you want them all to go through the spi tree?
>
> Given that the final patch removes the legacy interfaces I'm expecting
> to take them via SPI.
+1
least fuss approach
BR, Jarkko
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: (subset) [PATCH v2 00/33] spi: get rid of some legacy macros
2024-01-22 18:06 [PATCH v2 00/33] spi: get rid of some legacy macros Uwe Kleine-König
` (3 preceding siblings ...)
2024-01-24 17:13 ` Greg Kroah-Hartman
@ 2024-02-12 15:33 ` Mark Brown
4 siblings, 0 replies; 14+ messages in thread
From: Mark Brown @ 2024-02-12 15:33 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: kernel, Moritz Fischer, Wu Hao, Xu Yilun, Tom Rix, linux-fpga,
linux-kernel, Alexander Aring, Stefan Schmidt, Miquel Raynal,
David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
linux-wpan, netdev, Lars-Peter Clausen, Michael Hennerich,
Jonathan Cameron, linux-iio, Dmitry Torokhov, linux-input,
Ulf Hansson, Rayyan Ansari, Andy Shevchenko, Jonathan Cameron,
Martin Tuma, Mauro Carvalho Chehab, linux-media, Sergey Kozlov,
Arnd Bergmann, Greg Kroah-Hartman, Yang Yingliang, linux-mmc,
Richard Weinberger, Vignesh Raghavendra, Rob Herring,
Heiko Stuebner, Michal Simek, Amit Kumar Mahapatra via Alsa-devel,
linux-mtd, Martin Blumenstingl, Geert Uytterhoeven,
Pali Rohár, Simon Horman, Ronald Wahl, Benson Leung,
Tzung-Bi Shih, Guenter Roeck, chrome-platform, Max Filippov,
linux-spi, linux-arm-kernel, Bjorn Andersson, Konrad Dybcio,
linux-arm-msm, Matthias Brugger, AngeloGioacchino Del Regno,
linux-mediatek, Thomas Zimmermann, Javier Martinez Canillas,
Amit Kumar Mahapatra, dri-devel, linux-fbdev, linux-staging,
Viresh Kumar, Rui Miguel Silva, Johan Hovold, Alex Elder,
greybus-dev, Peter Huewe, Jarkko Sakkinen, Jason Gunthorpe,
linux-integrity, Herve Codina, Alan Stern, Aaro Koskinen,
Krzysztof Kozlowski, linux-usb, Helge Deller, Dario Binacchi,
Kalle Valo, Dmitry Antipov, libertas-dev, linux-wireless,
Jonathan Corbet, James Clark, Bjorn Helgaas, linux-doc
On Mon, 22 Jan 2024 19:06:55 +0100, Uwe Kleine-König wrote:
> this is v2 of this patch set.
>
> Changes since (implicit) v1, sent with Message-Id:
> cover.1705348269.git.u.kleine-koenig@pengutronix.de:
>
> - Rebase to v6.8-rc1
> - Fix a build failure on sh
> - Added the tags received in (implicit) v1.
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
Thanks!
[01/33] fpga: ice40-spi: Follow renaming of SPI "master" to "controller"
commit: 227ab73b89d66e3064b3c2bcb5fe382b1815763d
[02/33] ieee802154: ca8210: Follow renaming of SPI "master" to "controller"
commit: 167b78446706bb4d19f7dd93ca320aed25ae1bbd
[03/33] iio: adc: ad_sigma_delta: Follow renaming of SPI "master" to "controller"
commit: 2780e7b716a605781dbee753ef4983d775a65427
[04/33] Input: pxspad - follow renaming of SPI "master" to "controller"
commit: a78acec53b8524593afeed7258a442adc3450818
[05/33] Input: synaptics-rmi4 - follow renaming of SPI "master" to "controller"
commit: 1245633c61baf159fcc1303d7f0855f49831b9c1
[06/33] media: mgb4: Follow renaming of SPI "master" to "controller"
commit: 2c2f93fbfba7186cc081e23120f169eac3b5b62a
[07/33] media: netup_unidvb: Follow renaming of SPI "master" to "controller"
commit: cfa13a64bd631d8f04a1c385923706fcef9a63ed
[08/33] media: usb/msi2500: Follow renaming of SPI "master" to "controller"
commit: dd868ae646d5770f80f90dc056d06eb2e6d39c62
[09/33] media: v4l2-subdev: Follow renaming of SPI "master" to "controller"
commit: d920b3a672b7f79cd13b341234aebd49233f836c
[10/33] misc: gehc-achc: Follow renaming of SPI "master" to "controller"
commit: 26dcf09ee5d9ceba2c627ae3ba174a229f25638f
[11/33] mmc: mmc_spi: Follow renaming of SPI "master" to "controller"
commit: b0a6776e53403aa380411f2a43cdefb9f00ff50a
[12/33] mtd: dataflash: Follow renaming of SPI "master" to "controller"
commit: 44ee998db9eef84bf005c39486566a67cb018354
[14/33] net: ks8851: Follow renaming of SPI "master" to "controller"
commit: 1cc711a72ae7fd44e90839f0c8d3226664de55a2
[15/33] net: vertexcom: mse102x: Follow renaming of SPI "master" to "controller"
commit: 7969b98b80c0332f940c547f84650a20aab33841
[16/33] platform/chrome: cros_ec_spi: Follow renaming of SPI "master" to "controller"
commit: 85ad0ec049a771c4910c8aebb2d0bd9ce9311fd9
[17/33] spi: bitbang: Follow renaming of SPI "master" to "controller"
commit: 2259233110d90059187c5ba75537eb93eba8417b
[18/33] spi: cadence-quadspi: Don't emit error message on allocation error
commit: e71011dacc3413bed4118d2c42f10736ffcd762c
[19/33] spi: cadence-quadspi: Follow renaming of SPI "master" to "controller"
commit: 28e59d8bf1ace0ddf05f989a48d6824d75731267
[20/33] spi: cavium: Follow renaming of SPI "master" to "controller"
commit: 1747fbdedba8b6b3fd459895ed5d57e534549884
[21/33] spi: geni-qcom: Follow renaming of SPI "master" to "controller"
commit: 14cea92338a0776c1615994150e738ac0f5fbb2c
[22/33] spi: loopback-test: Follow renaming of SPI "master" to "controller"
commit: 2c2310c17fac13aa7e78756d7f3780c7891f9397
[23/33] spi: slave-mt27xx: Follow renaming of SPI "master" to "controller"
commit: 8197b136bbbe64a7cab1020a4b067020e5977d98
[24/33] spi: spidev: Follow renaming of SPI "master" to "controller"
commit: d934cd6f0e5d0052772612db4b07df60cb9da387
[25/33] staging: fbtft: Follow renaming of SPI "master" to "controller"
commit: bbd25d7260eeeaef89f7371cbadcd33dd7f7bff9
[26/33] staging: greybus: spi: Follow renaming of SPI "master" to "controller"
commit: ee3c668dda3d2783b0fff4091461356fe000e4d8
[27/33] tpm_tis_spi: Follow renaming of SPI "master" to "controller"
commit: b6af14eacc8814b0986e20507df423cebe9fd859
[28/33] usb: gadget: max3420_udc: Follow renaming of SPI "master" to "controller"
commit: 8c716f4a3d4fcbec976247e3443d36cbc24c0512
[29/33] video: fbdev: mmp: Follow renaming of SPI "master" to "controller"
commit: b23031e730e72ec9067b7c38c25e776c5e27e116
[30/33] wifi: libertas: Follow renaming of SPI "master" to "controller"
commit: 30060d57cee194d6b70283f2faf787e2fdc61b6e
[31/33] spi: fsl-lib: Follow renaming of SPI "master" to "controller"
commit: 801185efa2402dce57828930e9684884fc8d62da
[32/33] spi: Drop compat layer from renaming "master" to "controller"
commit: 620d269f29a569ba37419cc03cf1da2d55f6252a
[33/33] Documentation: spi: Update documentation for renaming "master" to "controller"
commit: 76b31eb4c2da3ddb3195cc14f6aad24908adf524
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 14+ messages in thread