* [PATCH v2 0/6] mfd: tmio: simplify header and move to platform_data
@ 2024-02-13 22:02 Wolfram Sang
2024-02-13 22:02 ` [PATCH v2 6/6] mfd: tmio: Move header " Wolfram Sang
` (2 more replies)
0 siblings, 3 replies; 10+ messages in thread
From: Wolfram Sang @ 2024-02-13 22:02 UTC (permalink / raw)
To: linux-renesas-soc
Cc: Lee Jones, Wolfram Sang, linux-arm-kernel, linux-kernel,
linux-mmc, linux-sh
Changes since v1:
* rebased to rc4
* collected all needed acks (Thanks!)
* capitalized first letter in commit subject
The MFD parts of the TMIO have been removed by Arnd, so that only the
SD/MMC related functionality is left. Remove the outdated remains in the
public header file and then move it to platform_data as the data is now
specific for the SD/MMC part.
Based on 6.8-rc4, build bot is happy. Branch is here:
git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git renesas/sdhi/tmio-simplification
(just missing Adrian's ack for SH which came just now)
We agreed already that this should go in via MFD. Thanks!
All the best!
Wolfram
Wolfram Sang (6):
mfd: tmio: Remove obsolete platform_data
mfd: tmio: Remove obsolete io accessors
mmc: tmio/sdhi: Fix includes
mfd: tmio: Update include files
mfd: tmio: Sanitize comments
mfd: tmio: Move header to platform_data
MAINTAINERS | 2 +-
arch/sh/boards/board-sh7757lcr.c | 2 +-
arch/sh/boards/mach-ap325rxa/setup.c | 2 +-
arch/sh/boards/mach-ecovec24/setup.c | 2 +-
arch/sh/boards/mach-kfr2r09/setup.c | 2 +-
arch/sh/boards/mach-migor/setup.c | 2 +-
arch/sh/boards/mach-se/7724/setup.c | 2 +-
drivers/mmc/host/renesas_sdhi_core.c | 2 +-
drivers/mmc/host/renesas_sdhi_internal_dmac.c | 5 +-
drivers/mmc/host/renesas_sdhi_sys_dmac.c | 5 +-
drivers/mmc/host/tmio_mmc_core.c | 3 +-
drivers/mmc/host/uniphier-sd.c | 2 +-
include/linux/mfd/tmio.h | 133 ------------------
include/linux/platform_data/tmio.h | 64 +++++++++
14 files changed, 81 insertions(+), 147 deletions(-)
delete mode 100644 include/linux/mfd/tmio.h
create mode 100644 include/linux/platform_data/tmio.h
--
2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH v2 6/6] mfd: tmio: Move header to platform_data 2024-02-13 22:02 [PATCH v2 0/6] mfd: tmio: simplify header and move to platform_data Wolfram Sang @ 2024-02-13 22:02 ` Wolfram Sang 2024-02-14 16:16 ` Geert Uytterhoeven 2024-02-23 15:20 ` [PATCH v2 0/6] mfd: tmio: simplify header and move " Lee Jones 2024-07-09 9:40 ` Lee Jones 2 siblings, 1 reply; 10+ messages in thread From: Wolfram Sang @ 2024-02-13 22:02 UTC (permalink / raw) To: linux-renesas-soc Cc: Lee Jones, Wolfram Sang, Ulf Hansson, John Paul Adrian Glaubitz, Yoshinori Sato, Rich Felker, Kunihiko Hayashi, Masami Hiramatsu, linux-kernel, linux-sh, linux-mmc, linux-arm-kernel All the MFD components are gone from the header meanwhile. Only the MMC relevant data is left which makes it a platform_data for the MMC controller. Move the header to the now fitting directory. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Acked-by: Lee Jones <lee@kernel.org> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> # For MMC Acked-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> --- MAINTAINERS | 2 +- arch/sh/boards/board-sh7757lcr.c | 2 +- arch/sh/boards/mach-ap325rxa/setup.c | 2 +- arch/sh/boards/mach-ecovec24/setup.c | 2 +- arch/sh/boards/mach-kfr2r09/setup.c | 2 +- arch/sh/boards/mach-migor/setup.c | 2 +- arch/sh/boards/mach-se/7724/setup.c | 2 +- drivers/mmc/host/renesas_sdhi_core.c | 2 +- drivers/mmc/host/renesas_sdhi_internal_dmac.c | 2 +- drivers/mmc/host/renesas_sdhi_sys_dmac.c | 2 +- drivers/mmc/host/tmio_mmc_core.c | 2 +- drivers/mmc/host/uniphier-sd.c | 2 +- include/linux/{mfd => platform_data}/tmio.h | 0 13 files changed, 12 insertions(+), 12 deletions(-) rename include/linux/{mfd => platform_data}/tmio.h (100%) diff --git a/MAINTAINERS b/MAINTAINERS index 73d898383e51..fb672e0bb0c1 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -22153,7 +22153,7 @@ L: linux-renesas-soc@vger.kernel.org S: Supported F: drivers/mmc/host/renesas_sdhi* F: drivers/mmc/host/tmio_mmc* -F: include/linux/mfd/tmio.h +F: include/linux/platform_data/tmio.h TMP401 HARDWARE MONITOR DRIVER M: Guenter Roeck <linux@roeck-us.net> diff --git a/arch/sh/boards/board-sh7757lcr.c b/arch/sh/boards/board-sh7757lcr.c index f39c8196efdf..4014c042d2a5 100644 --- a/arch/sh/boards/board-sh7757lcr.c +++ b/arch/sh/boards/board-sh7757lcr.c @@ -14,9 +14,9 @@ #include <linux/spi/spi.h> #include <linux/spi/flash.h> #include <linux/io.h> -#include <linux/mfd/tmio.h> #include <linux/mmc/host.h> #include <linux/platform_data/sh_mmcif.h> +#include <linux/platform_data/tmio.h> #include <linux/sh_eth.h> #include <linux/sh_intc.h> #include <linux/usb/renesas_usbhs.h> diff --git a/arch/sh/boards/mach-ap325rxa/setup.c b/arch/sh/boards/mach-ap325rxa/setup.c index 645cccf3da88..bb5004a8ac02 100644 --- a/arch/sh/boards/mach-ap325rxa/setup.c +++ b/arch/sh/boards/mach-ap325rxa/setup.c @@ -24,10 +24,10 @@ #include <linux/init.h> #include <linux/interrupt.h> #include <linux/memblock.h> -#include <linux/mfd/tmio.h> #include <linux/mmc/host.h> #include <linux/mtd/physmap.h> #include <linux/mtd/sh_flctl.h> +#include <linux/platform_data/tmio.h> #include <linux/platform_device.h> #include <linux/regulator/fixed.h> #include <linux/regulator/machine.h> diff --git a/arch/sh/boards/mach-ecovec24/setup.c b/arch/sh/boards/mach-ecovec24/setup.c index 30d117f9ad7e..6f13557eecd6 100644 --- a/arch/sh/boards/mach-ecovec24/setup.c +++ b/arch/sh/boards/mach-ecovec24/setup.c @@ -17,13 +17,13 @@ #include <linux/input/sh_keysc.h> #include <linux/interrupt.h> #include <linux/memblock.h> -#include <linux/mfd/tmio.h> #include <linux/mmc/host.h> #include <linux/platform_data/sh_mmcif.h> #include <linux/mtd/physmap.h> #include <linux/gpio.h> #include <linux/gpio/machine.h> #include <linux/platform_data/gpio_backlight.h> +#include <linux/platform_data/tmio.h> #include <linux/platform_data/tsc2007.h> #include <linux/platform_device.h> #include <linux/regulator/fixed.h> diff --git a/arch/sh/boards/mach-kfr2r09/setup.c b/arch/sh/boards/mach-kfr2r09/setup.c index 6b775eae85c0..70236859919d 100644 --- a/arch/sh/boards/mach-kfr2r09/setup.c +++ b/arch/sh/boards/mach-kfr2r09/setup.c @@ -22,10 +22,10 @@ #include <linux/input/sh_keysc.h> #include <linux/interrupt.h> #include <linux/memblock.h> -#include <linux/mfd/tmio.h> #include <linux/mmc/host.h> #include <linux/mtd/physmap.h> #include <linux/platform_data/lv5207lp.h> +#include <linux/platform_data/tmio.h> #include <linux/platform_device.h> #include <linux/regulator/fixed.h> #include <linux/regulator/machine.h> diff --git a/arch/sh/boards/mach-migor/setup.c b/arch/sh/boards/mach-migor/setup.c index 773ee767d0c4..1853e6319a66 100644 --- a/arch/sh/boards/mach-migor/setup.c +++ b/arch/sh/boards/mach-migor/setup.c @@ -7,6 +7,7 @@ #include <linux/clkdev.h> #include <linux/dma-map-ops.h> #include <linux/init.h> +#include <linux/platform_data/tmio.h> #include <linux/platform_device.h> #include <linux/interrupt.h> #include <linux/input.h> @@ -14,7 +15,6 @@ #include <linux/memblock.h> #include <linux/mmc/host.h> #include <linux/mtd/physmap.h> -#include <linux/mfd/tmio.h> #include <linux/mtd/platnand.h> #include <linux/i2c.h> #include <linux/regulator/fixed.h> diff --git a/arch/sh/boards/mach-se/7724/setup.c b/arch/sh/boards/mach-se/7724/setup.c index 787ddd3c627a..e500feb91053 100644 --- a/arch/sh/boards/mach-se/7724/setup.c +++ b/arch/sh/boards/mach-se/7724/setup.c @@ -21,9 +21,9 @@ #include <linux/input/sh_keysc.h> #include <linux/interrupt.h> #include <linux/memblock.h> -#include <linux/mfd/tmio.h> #include <linux/mmc/host.h> #include <linux/mtd/physmap.h> +#include <linux/platform_data/tmio.h> #include <linux/platform_device.h> #include <linux/regulator/fixed.h> #include <linux/regulator/machine.h> diff --git a/drivers/mmc/host/renesas_sdhi_core.c b/drivers/mmc/host/renesas_sdhi_core.c index c675dec587ef..f84f60139bcf 100644 --- a/drivers/mmc/host/renesas_sdhi_core.c +++ b/drivers/mmc/host/renesas_sdhi_core.c @@ -22,13 +22,13 @@ #include <linux/delay.h> #include <linux/iopoll.h> #include <linux/kernel.h> -#include <linux/mfd/tmio.h> #include <linux/mmc/host.h> #include <linux/mmc/mmc.h> #include <linux/mmc/slot-gpio.h> #include <linux/module.h> #include <linux/pinctrl/consumer.h> #include <linux/pinctrl/pinctrl-state.h> +#include <linux/platform_data/tmio.h> #include <linux/platform_device.h> #include <linux/pm_domain.h> #include <linux/regulator/consumer.h> diff --git a/drivers/mmc/host/renesas_sdhi_internal_dmac.c b/drivers/mmc/host/renesas_sdhi_internal_dmac.c index 24e1c17908d7..97cd55fec0bf 100644 --- a/drivers/mmc/host/renesas_sdhi_internal_dmac.c +++ b/drivers/mmc/host/renesas_sdhi_internal_dmac.c @@ -11,12 +11,12 @@ #include <linux/device.h> #include <linux/dma-mapping.h> #include <linux/io-64-nonatomic-hi-lo.h> -#include <linux/mfd/tmio.h> #include <linux/mmc/host.h> #include <linux/mod_devicetable.h> #include <linux/module.h> #include <linux/of.h> #include <linux/pagemap.h> +#include <linux/platform_data/tmio.h> #include <linux/platform_device.h> #include <linux/pm_runtime.h> #include <linux/scatterlist.h> diff --git a/drivers/mmc/host/renesas_sdhi_sys_dmac.c b/drivers/mmc/host/renesas_sdhi_sys_dmac.c index c18581897f8a..68e31c37cce6 100644 --- a/drivers/mmc/host/renesas_sdhi_sys_dmac.c +++ b/drivers/mmc/host/renesas_sdhi_sys_dmac.c @@ -11,12 +11,12 @@ #include <linux/device.h> #include <linux/dma-mapping.h> #include <linux/dmaengine.h> -#include <linux/mfd/tmio.h> #include <linux/mmc/host.h> #include <linux/mod_devicetable.h> #include <linux/module.h> #include <linux/of.h> #include <linux/pagemap.h> +#include <linux/platform_data/tmio.h> #include <linux/platform_device.h> #include <linux/pm_runtime.h> #include <linux/scatterlist.h> diff --git a/drivers/mmc/host/tmio_mmc_core.c b/drivers/mmc/host/tmio_mmc_core.c index c39141a5bd23..0c4397b3cffd 100644 --- a/drivers/mmc/host/tmio_mmc_core.c +++ b/drivers/mmc/host/tmio_mmc_core.c @@ -31,7 +31,6 @@ #include <linux/interrupt.h> #include <linux/io.h> #include <linux/irq.h> -#include <linux/mfd/tmio.h> #include <linux/mmc/card.h> #include <linux/mmc/host.h> #include <linux/mmc/mmc.h> @@ -39,6 +38,7 @@ #include <linux/module.h> #include <linux/of.h> #include <linux/pagemap.h> +#include <linux/platform_data/tmio.h> #include <linux/platform_device.h> #include <linux/pm_qos.h> #include <linux/pm_runtime.h> diff --git a/drivers/mmc/host/uniphier-sd.c b/drivers/mmc/host/uniphier-sd.c index 1404989e6151..bd231dbe90ba 100644 --- a/drivers/mmc/host/uniphier-sd.c +++ b/drivers/mmc/host/uniphier-sd.c @@ -9,11 +9,11 @@ #include <linux/delay.h> #include <linux/dma-mapping.h> #include <linux/mfd/syscon.h> -#include <linux/mfd/tmio.h> #include <linux/mmc/host.h> #include <linux/module.h> #include <linux/of.h> #include <linux/pinctrl/consumer.h> +#include <linux/platform_data/tmio.h> #include <linux/platform_device.h> #include <linux/regmap.h> #include <linux/reset.h> diff --git a/include/linux/mfd/tmio.h b/include/linux/platform_data/tmio.h similarity index 100% rename from include/linux/mfd/tmio.h rename to include/linux/platform_data/tmio.h -- 2.43.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v2 6/6] mfd: tmio: Move header to platform_data 2024-02-13 22:02 ` [PATCH v2 6/6] mfd: tmio: Move header " Wolfram Sang @ 2024-02-14 16:16 ` Geert Uytterhoeven 0 siblings, 0 replies; 10+ messages in thread From: Geert Uytterhoeven @ 2024-02-14 16:16 UTC (permalink / raw) To: Wolfram Sang Cc: linux-renesas-soc, Lee Jones, Ulf Hansson, John Paul Adrian Glaubitz, Yoshinori Sato, Rich Felker, Kunihiko Hayashi, Masami Hiramatsu, linux-kernel, linux-sh, linux-mmc, linux-arm-kernel On Tue, Feb 13, 2024 at 11:04 PM Wolfram Sang <wsa+renesas@sang-engineering.com> wrote: > All the MFD components are gone from the header meanwhile. Only the MMC > relevant data is left which makes it a platform_data for the MMC > controller. Move the header to the now fitting directory. > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> > Acked-by: Lee Jones <lee@kernel.org> > Acked-by: Ulf Hansson <ulf.hansson@linaro.org> # For MMC > Acked-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 0/6] mfd: tmio: simplify header and move to platform_data 2024-02-13 22:02 [PATCH v2 0/6] mfd: tmio: simplify header and move to platform_data Wolfram Sang 2024-02-13 22:02 ` [PATCH v2 6/6] mfd: tmio: Move header " Wolfram Sang @ 2024-02-23 15:20 ` Lee Jones 2024-07-07 5:41 ` Wolfram Sang 2024-07-09 9:40 ` Lee Jones 2 siblings, 1 reply; 10+ messages in thread From: Lee Jones @ 2024-02-23 15:20 UTC (permalink / raw) To: linux-renesas-soc, Wolfram Sang Cc: Lee Jones, linux-arm-kernel, linux-kernel, linux-mmc, linux-sh On Tue, 13 Feb 2024 23:02:19 +0100, Wolfram Sang wrote: > Changes since v1: > > * rebased to rc4 > * collected all needed acks (Thanks!) > * capitalized first letter in commit subject > > The MFD parts of the TMIO have been removed by Arnd, so that only the > SD/MMC related functionality is left. Remove the outdated remains in the > public header file and then move it to platform_data as the data is now > specific for the SD/MMC part. > > [...] Applied, thanks! [1/6] mfd: tmio: Remove obsolete platform_data commit: 58d6d15662e4039fab7d786f0426843befa77ad4 [2/6] mfd: tmio: Remove obsolete io accessors commit: e927d7bac109d8ca1729dda47a8dbc220efdb50e [3/6] mmc: tmio/sdhi: Fix includes commit: bed05c68aa8f078206143700cd37e42a0084155f [4/6] mfd: tmio: Update include files commit: 3ef94c41db82573dc1e1dd6c259aec8ef6caaaf3 [5/6] mfd: tmio: Sanitize comments commit: 2d417dda59123b9523a19ce75fea3fd1056c3b4c [6/6] mfd: tmio: Move header to platform_data commit: 858b29729c9d319b9cd1441646cc3af246d3c3f9 -- Lee Jones [李琼斯] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 0/6] mfd: tmio: simplify header and move to platform_data 2024-02-23 15:20 ` [PATCH v2 0/6] mfd: tmio: simplify header and move " Lee Jones @ 2024-07-07 5:41 ` Wolfram Sang 2024-07-07 19:48 ` Geert Uytterhoeven 0 siblings, 1 reply; 10+ messages in thread From: Wolfram Sang @ 2024-07-07 5:41 UTC (permalink / raw) To: Lee Jones Cc: linux-renesas-soc, linux-arm-kernel, linux-kernel, linux-mmc, linux-sh [-- Attachment #1: Type: text/plain, Size: 1230 bytes --] On Fri, Feb 23, 2024 at 03:20:00PM +0000, Lee Jones wrote: > On Tue, 13 Feb 2024 23:02:19 +0100, Wolfram Sang wrote: > > Changes since v1: > > > > * rebased to rc4 > > * collected all needed acks (Thanks!) > > * capitalized first letter in commit subject > > > > The MFD parts of the TMIO have been removed by Arnd, so that only the > > SD/MMC related functionality is left. Remove the outdated remains in the > > public header file and then move it to platform_data as the data is now > > specific for the SD/MMC part. > > > > [...] > > Applied, thanks! > > [1/6] mfd: tmio: Remove obsolete platform_data > commit: 58d6d15662e4039fab7d786f0426843befa77ad4 > [2/6] mfd: tmio: Remove obsolete io accessors > commit: e927d7bac109d8ca1729dda47a8dbc220efdb50e > [3/6] mmc: tmio/sdhi: Fix includes > commit: bed05c68aa8f078206143700cd37e42a0084155f > [4/6] mfd: tmio: Update include files > commit: 3ef94c41db82573dc1e1dd6c259aec8ef6caaaf3 > [5/6] mfd: tmio: Sanitize comments > commit: 2d417dda59123b9523a19ce75fea3fd1056c3b4c > [6/6] mfd: tmio: Move header to platform_data > commit: 858b29729c9d319b9cd1441646cc3af246d3c3f9 This series is not upstream yet? [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 0/6] mfd: tmio: simplify header and move to platform_data 2024-07-07 5:41 ` Wolfram Sang @ 2024-07-07 19:48 ` Geert Uytterhoeven 2024-07-09 9:33 ` Lee Jones 0 siblings, 1 reply; 10+ messages in thread From: Geert Uytterhoeven @ 2024-07-07 19:48 UTC (permalink / raw) To: Wolfram Sang, Lee Jones, linux-renesas-soc, linux-arm-kernel, linux-kernel, linux-mmc, linux-sh On Sun, Jul 7, 2024 at 7:41 AM Wolfram Sang <wsa+renesas@sang-engineering.com> wrote: > On Fri, Feb 23, 2024 at 03:20:00PM +0000, Lee Jones wrote: > > On Tue, 13 Feb 2024 23:02:19 +0100, Wolfram Sang wrote: > > > Changes since v1: > > > > > > * rebased to rc4 > > > * collected all needed acks (Thanks!) > > > * capitalized first letter in commit subject > > > > > > The MFD parts of the TMIO have been removed by Arnd, so that only the > > > SD/MMC related functionality is left. Remove the outdated remains in the > > > public header file and then move it to platform_data as the data is now > > > specific for the SD/MMC part. > > > > > > [...] > > > > Applied, thanks! > > > > [1/6] mfd: tmio: Remove obsolete platform_data > > commit: 58d6d15662e4039fab7d786f0426843befa77ad4 > > [2/6] mfd: tmio: Remove obsolete io accessors > > commit: e927d7bac109d8ca1729dda47a8dbc220efdb50e > > [3/6] mmc: tmio/sdhi: Fix includes > > commit: bed05c68aa8f078206143700cd37e42a0084155f > > [4/6] mfd: tmio: Update include files > > commit: 3ef94c41db82573dc1e1dd6c259aec8ef6caaaf3 > > [5/6] mfd: tmio: Sanitize comments > > commit: 2d417dda59123b9523a19ce75fea3fd1056c3b4c > > [6/6] mfd: tmio: Move header to platform_data > > commit: 858b29729c9d319b9cd1441646cc3af246d3c3f9 > > This series is not upstream yet? FTR, it entered linux-next in next-20240402, but disappeared after next-20240510. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 0/6] mfd: tmio: simplify header and move to platform_data 2024-07-07 19:48 ` Geert Uytterhoeven @ 2024-07-09 9:33 ` Lee Jones 0 siblings, 0 replies; 10+ messages in thread From: Lee Jones @ 2024-07-09 9:33 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Wolfram Sang, linux-renesas-soc, linux-arm-kernel, linux-kernel, linux-mmc, linux-sh On Sun, 07 Jul 2024, Geert Uytterhoeven wrote: > On Sun, Jul 7, 2024 at 7:41 AM Wolfram Sang > <wsa+renesas@sang-engineering.com> wrote: > > On Fri, Feb 23, 2024 at 03:20:00PM +0000, Lee Jones wrote: > > > On Tue, 13 Feb 2024 23:02:19 +0100, Wolfram Sang wrote: > > > > Changes since v1: > > > > > > > > * rebased to rc4 > > > > * collected all needed acks (Thanks!) > > > > * capitalized first letter in commit subject > > > > > > > > The MFD parts of the TMIO have been removed by Arnd, so that only the > > > > SD/MMC related functionality is left. Remove the outdated remains in the > > > > public header file and then move it to platform_data as the data is now > > > > specific for the SD/MMC part. > > > > > > > > [...] > > > > > > Applied, thanks! > > > > > > [1/6] mfd: tmio: Remove obsolete platform_data > > > commit: 58d6d15662e4039fab7d786f0426843befa77ad4 > > > [2/6] mfd: tmio: Remove obsolete io accessors > > > commit: e927d7bac109d8ca1729dda47a8dbc220efdb50e > > > [3/6] mmc: tmio/sdhi: Fix includes > > > commit: bed05c68aa8f078206143700cd37e42a0084155f > > > [4/6] mfd: tmio: Update include files > > > commit: 3ef94c41db82573dc1e1dd6c259aec8ef6caaaf3 > > > [5/6] mfd: tmio: Sanitize comments > > > commit: 2d417dda59123b9523a19ce75fea3fd1056c3b4c > > > [6/6] mfd: tmio: Move header to platform_data > > > commit: 858b29729c9d319b9cd1441646cc3af246d3c3f9 > > > > This series is not upstream yet? > > FTR, it entered linux-next in next-20240402, but disappeared after > next-20240510. That's very odd. I cannot explain that. I'll go apply it again. Sorry for this. -- Lee Jones [李琼斯] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 0/6] mfd: tmio: simplify header and move to platform_data 2024-02-13 22:02 [PATCH v2 0/6] mfd: tmio: simplify header and move to platform_data Wolfram Sang 2024-02-13 22:02 ` [PATCH v2 6/6] mfd: tmio: Move header " Wolfram Sang 2024-02-23 15:20 ` [PATCH v2 0/6] mfd: tmio: simplify header and move " Lee Jones @ 2024-07-09 9:40 ` Lee Jones 2024-07-09 9:41 ` Lee Jones 2 siblings, 1 reply; 10+ messages in thread From: Lee Jones @ 2024-07-09 9:40 UTC (permalink / raw) To: linux-renesas-soc, Wolfram Sang Cc: Lee Jones, linux-arm-kernel, linux-kernel, linux-mmc, linux-sh On Tue, 13 Feb 2024 23:02:19 +0100, Wolfram Sang wrote: > Changes since v1: > > * rebased to rc4 > * collected all needed acks (Thanks!) > * capitalized first letter in commit subject > > The MFD parts of the TMIO have been removed by Arnd, so that only the > SD/MMC related functionality is left. Remove the outdated remains in the > public header file and then move it to platform_data as the data is now > specific for the SD/MMC part. > > [...] Applied, thanks! [1/6] mfd: tmio: Remove obsolete platform_data commit: ef6dfcbcbbf7d9a414feb44aa093d2d8592a2e20 [2/6] mfd: tmio: Remove obsolete io accessors commit: 6bec678b9872271ce2e0879c360ad7a1a524c7fa [3/6] mmc: tmio/sdhi: Fix includes commit: 4377aef83d0db25efc928a633ee80698b8520c8e [4/6] mfd: tmio: Update include files commit: d411ccbe103d665a31861987e2f1b36944ab63f2 [5/6] mfd: tmio: Sanitize comments commit: 763135b819ad3e3e0301b66094d50923e64092a7 [6/6] mfd: tmio: Move header to platform_data commit: 70b46487b1558eb25ea6e533c905131b10596dc0 -- Lee Jones [李琼斯] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 0/6] mfd: tmio: simplify header and move to platform_data 2024-07-09 9:40 ` Lee Jones @ 2024-07-09 9:41 ` Lee Jones 2024-07-09 10:37 ` Wolfram Sang 0 siblings, 1 reply; 10+ messages in thread From: Lee Jones @ 2024-07-09 9:41 UTC (permalink / raw) To: linux-renesas-soc, Wolfram Sang Cc: linux-arm-kernel, linux-kernel, linux-mmc, linux-sh On Tue, 09 Jul 2024, Lee Jones wrote: > On Tue, 13 Feb 2024 23:02:19 +0100, Wolfram Sang wrote: > > Changes since v1: > > > > * rebased to rc4 > > * collected all needed acks (Thanks!) > > * capitalized first letter in commit subject > > > > The MFD parts of the TMIO have been removed by Arnd, so that only the > > SD/MMC related functionality is left. Remove the outdated remains in the > > public header file and then move it to platform_data as the data is now > > specific for the SD/MMC part. > > > > [...] > > Applied, thanks! > > [1/6] mfd: tmio: Remove obsolete platform_data > commit: ef6dfcbcbbf7d9a414feb44aa093d2d8592a2e20 > [2/6] mfd: tmio: Remove obsolete io accessors > commit: 6bec678b9872271ce2e0879c360ad7a1a524c7fa > [3/6] mmc: tmio/sdhi: Fix includes > commit: 4377aef83d0db25efc928a633ee80698b8520c8e > [4/6] mfd: tmio: Update include files > commit: d411ccbe103d665a31861987e2f1b36944ab63f2 > [5/6] mfd: tmio: Sanitize comments > commit: 763135b819ad3e3e0301b66094d50923e64092a7 > [6/6] mfd: tmio: Move header to platform_data > commit: 70b46487b1558eb25ea6e533c905131b10596dc0 Applied and pushed - should be in tomorrow's -next. -- Lee Jones [李琼斯] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 0/6] mfd: tmio: simplify header and move to platform_data 2024-07-09 9:41 ` Lee Jones @ 2024-07-09 10:37 ` Wolfram Sang 0 siblings, 0 replies; 10+ messages in thread From: Wolfram Sang @ 2024-07-09 10:37 UTC (permalink / raw) To: Lee Jones Cc: linux-renesas-soc, linux-arm-kernel, linux-kernel, linux-mmc, linux-sh [-- Attachment #1: Type: text/plain, Size: 68 bytes --] > Applied and pushed - should be in tomorrow's -next. Thank you! [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-07-09 10:37 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-02-13 22:02 [PATCH v2 0/6] mfd: tmio: simplify header and move to platform_data Wolfram Sang 2024-02-13 22:02 ` [PATCH v2 6/6] mfd: tmio: Move header " Wolfram Sang 2024-02-14 16:16 ` Geert Uytterhoeven 2024-02-23 15:20 ` [PATCH v2 0/6] mfd: tmio: simplify header and move " Lee Jones 2024-07-07 5:41 ` Wolfram Sang 2024-07-07 19:48 ` Geert Uytterhoeven 2024-07-09 9:33 ` Lee Jones 2024-07-09 9:40 ` Lee Jones 2024-07-09 9:41 ` Lee Jones 2024-07-09 10:37 ` Wolfram Sang
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).