All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] depends on ARCH_STM32 instead of MACH_STM32MP157
@ 2023-03-24 15:51 ` Christophe Kerello
  0 siblings, 0 replies; 14+ messages in thread
From: Christophe Kerello @ 2023-03-24 15:51 UTC (permalink / raw)
  To: miquel.raynal, richard, vigneshr, krzysztof.kozlowski
  Cc: linux-mtd, linux-kernel, linux-stm32, Christophe Kerello

To be able to compile the driver on all STM32MP SOCs, we move the
"depends on" on ARCH_STM32.

Christophe Kerello (2):
  memory: stm32-fmc2-ebi: depends on ARCH_STM32 instead of
    MACH_STM32MP157
  mtd: rawnand: stm32_fmc2: depends on ARCH_STM32 instead of
    MACH_STM32MP157

 drivers/memory/Kconfig       | 2 +-
 drivers/mtd/nand/raw/Kconfig | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.25.1


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

* [PATCH 0/2] depends on ARCH_STM32 instead of MACH_STM32MP157
@ 2023-03-24 15:51 ` Christophe Kerello
  0 siblings, 0 replies; 14+ messages in thread
From: Christophe Kerello @ 2023-03-24 15:51 UTC (permalink / raw)
  To: miquel.raynal, richard, vigneshr, krzysztof.kozlowski
  Cc: linux-mtd, linux-kernel, linux-stm32, Christophe Kerello

To be able to compile the driver on all STM32MP SOCs, we move the
"depends on" on ARCH_STM32.

Christophe Kerello (2):
  memory: stm32-fmc2-ebi: depends on ARCH_STM32 instead of
    MACH_STM32MP157
  mtd: rawnand: stm32_fmc2: depends on ARCH_STM32 instead of
    MACH_STM32MP157

 drivers/memory/Kconfig       | 2 +-
 drivers/mtd/nand/raw/Kconfig | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.25.1


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

* [PATCH 1/2] memory: stm32-fmc2-ebi: depends on ARCH_STM32 instead of MACH_STM32MP157
  2023-03-24 15:51 ` Christophe Kerello
@ 2023-03-24 15:51   ` Christophe Kerello
  -1 siblings, 0 replies; 14+ messages in thread
From: Christophe Kerello @ 2023-03-24 15:51 UTC (permalink / raw)
  To: miquel.raynal, richard, vigneshr, krzysztof.kozlowski
  Cc: linux-mtd, linux-kernel, linux-stm32, Christophe Kerello

To be able to compile the driver on all STM32MP SOCs, we move the
"depends on" on ARCH_STM32.

Signed-off-by: Christophe Kerello <christophe.kerello@foss.st.com>
---
 drivers/memory/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/memory/Kconfig b/drivers/memory/Kconfig
index fac290e48e0b..91774e6ee624 100644
--- a/drivers/memory/Kconfig
+++ b/drivers/memory/Kconfig
@@ -228,7 +228,7 @@ config RENESAS_RPCIF
 
 config STM32_FMC2_EBI
 	tristate "Support for FMC2 External Bus Interface on STM32MP SoCs"
-	depends on MACH_STM32MP157 || COMPILE_TEST
+	depends on ARCH_STM32 || COMPILE_TEST
 	select MFD_SYSCON
 	help
 	  Select this option to enable the STM32 FMC2 External Bus Interface
-- 
2.25.1


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

* [PATCH 1/2] memory: stm32-fmc2-ebi: depends on ARCH_STM32 instead of MACH_STM32MP157
@ 2023-03-24 15:51   ` Christophe Kerello
  0 siblings, 0 replies; 14+ messages in thread
From: Christophe Kerello @ 2023-03-24 15:51 UTC (permalink / raw)
  To: miquel.raynal, richard, vigneshr, krzysztof.kozlowski
  Cc: linux-mtd, linux-kernel, linux-stm32, Christophe Kerello

To be able to compile the driver on all STM32MP SOCs, we move the
"depends on" on ARCH_STM32.

Signed-off-by: Christophe Kerello <christophe.kerello@foss.st.com>
---
 drivers/memory/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/memory/Kconfig b/drivers/memory/Kconfig
index fac290e48e0b..91774e6ee624 100644
--- a/drivers/memory/Kconfig
+++ b/drivers/memory/Kconfig
@@ -228,7 +228,7 @@ config RENESAS_RPCIF
 
 config STM32_FMC2_EBI
 	tristate "Support for FMC2 External Bus Interface on STM32MP SoCs"
-	depends on MACH_STM32MP157 || COMPILE_TEST
+	depends on ARCH_STM32 || COMPILE_TEST
 	select MFD_SYSCON
 	help
 	  Select this option to enable the STM32 FMC2 External Bus Interface
-- 
2.25.1


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

* [PATCH 2/2] mtd: rawnand: stm32_fmc2: depends on ARCH_STM32 instead of MACH_STM32MP157
  2023-03-24 15:51 ` Christophe Kerello
@ 2023-03-24 15:51   ` Christophe Kerello
  -1 siblings, 0 replies; 14+ messages in thread
From: Christophe Kerello @ 2023-03-24 15:51 UTC (permalink / raw)
  To: miquel.raynal, richard, vigneshr, krzysztof.kozlowski
  Cc: linux-mtd, linux-kernel, linux-stm32, Christophe Kerello

To be able to compile the driver on all STM32MP SOCs, we move the
"depends on" on ARCH_STM32.

Signed-off-by: Christophe Kerello <christophe.kerello@foss.st.com>
---
 drivers/mtd/nand/raw/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/nand/raw/Kconfig b/drivers/mtd/nand/raw/Kconfig
index 170f1185ddc4..b523354dfb00 100644
--- a/drivers/mtd/nand/raw/Kconfig
+++ b/drivers/mtd/nand/raw/Kconfig
@@ -373,7 +373,7 @@ config MTD_NAND_TEGRA
 
 config MTD_NAND_STM32_FMC2
 	tristate "Support for NAND controller on STM32MP SoCs"
-	depends on MACH_STM32MP157 || COMPILE_TEST
+	depends on ARCH_STM32 || COMPILE_TEST
 	select MFD_SYSCON
 	help
 	  Enables support for NAND Flash chips on SoCs containing the FMC2
-- 
2.25.1


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

* [PATCH 2/2] mtd: rawnand: stm32_fmc2: depends on ARCH_STM32 instead of MACH_STM32MP157
@ 2023-03-24 15:51   ` Christophe Kerello
  0 siblings, 0 replies; 14+ messages in thread
From: Christophe Kerello @ 2023-03-24 15:51 UTC (permalink / raw)
  To: miquel.raynal, richard, vigneshr, krzysztof.kozlowski
  Cc: linux-mtd, linux-kernel, linux-stm32, Christophe Kerello

To be able to compile the driver on all STM32MP SOCs, we move the
"depends on" on ARCH_STM32.

Signed-off-by: Christophe Kerello <christophe.kerello@foss.st.com>
---
 drivers/mtd/nand/raw/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/nand/raw/Kconfig b/drivers/mtd/nand/raw/Kconfig
index 170f1185ddc4..b523354dfb00 100644
--- a/drivers/mtd/nand/raw/Kconfig
+++ b/drivers/mtd/nand/raw/Kconfig
@@ -373,7 +373,7 @@ config MTD_NAND_TEGRA
 
 config MTD_NAND_STM32_FMC2
 	tristate "Support for NAND controller on STM32MP SoCs"
-	depends on MACH_STM32MP157 || COMPILE_TEST
+	depends on ARCH_STM32 || COMPILE_TEST
 	select MFD_SYSCON
 	help
 	  Enables support for NAND Flash chips on SoCs containing the FMC2
-- 
2.25.1


______________________________________________________
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 0/2] depends on ARCH_STM32 instead of MACH_STM32MP157
  2023-03-24 15:51 ` Christophe Kerello
@ 2023-03-24 16:03   ` Miquel Raynal
  -1 siblings, 0 replies; 14+ messages in thread
From: Miquel Raynal @ 2023-03-24 16:03 UTC (permalink / raw)
  To: Christophe Kerello
  Cc: richard, vigneshr, krzysztof.kozlowski, linux-mtd, linux-kernel,
	linux-stm32

Hi Christophe,

christophe.kerello@foss.st.com wrote on Fri, 24 Mar 2023 16:51:03 +0100:

> To be able to compile the driver on all STM32MP SOCs, we move the
> "depends on" on ARCH_STM32.
> 
> Christophe Kerello (2):
>   memory: stm32-fmc2-ebi: depends on ARCH_STM32 instead of
>     MACH_STM32MP157
>   mtd: rawnand: stm32_fmc2: depends on ARCH_STM32 instead of
>     MACH_STM32MP157

I don't see issue with taking these two patches in independent trees so
if nobody disagrees I will take the second one through the mtd tree and
let Krzysztof take the first one through mem-ctrl.

> 
>  drivers/memory/Kconfig       | 2 +-
>  drivers/mtd/nand/raw/Kconfig | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 


Thanks,
Miquèl

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

* Re: [PATCH 0/2] depends on ARCH_STM32 instead of MACH_STM32MP157
@ 2023-03-24 16:03   ` Miquel Raynal
  0 siblings, 0 replies; 14+ messages in thread
From: Miquel Raynal @ 2023-03-24 16:03 UTC (permalink / raw)
  To: Christophe Kerello
  Cc: richard, vigneshr, krzysztof.kozlowski, linux-mtd, linux-kernel,
	linux-stm32

Hi Christophe,

christophe.kerello@foss.st.com wrote on Fri, 24 Mar 2023 16:51:03 +0100:

> To be able to compile the driver on all STM32MP SOCs, we move the
> "depends on" on ARCH_STM32.
> 
> Christophe Kerello (2):
>   memory: stm32-fmc2-ebi: depends on ARCH_STM32 instead of
>     MACH_STM32MP157
>   mtd: rawnand: stm32_fmc2: depends on ARCH_STM32 instead of
>     MACH_STM32MP157

I don't see issue with taking these two patches in independent trees so
if nobody disagrees I will take the second one through the mtd tree and
let Krzysztof take the first one through mem-ctrl.

> 
>  drivers/memory/Kconfig       | 2 +-
>  drivers/mtd/nand/raw/Kconfig | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 


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 0/2] depends on ARCH_STM32 instead of MACH_STM32MP157
  2023-03-24 16:03   ` Miquel Raynal
@ 2023-03-27 16:05     ` Krzysztof Kozlowski
  -1 siblings, 0 replies; 14+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-27 16:05 UTC (permalink / raw)
  To: Miquel Raynal, Christophe Kerello
  Cc: richard, vigneshr, linux-mtd, linux-kernel, linux-stm32

On 24/03/2023 17:03, Miquel Raynal wrote:
> Hi Christophe,
> 
> christophe.kerello@foss.st.com wrote on Fri, 24 Mar 2023 16:51:03 +0100:
> 
>> To be able to compile the driver on all STM32MP SOCs, we move the
>> "depends on" on ARCH_STM32.
>>
>> Christophe Kerello (2):
>>   memory: stm32-fmc2-ebi: depends on ARCH_STM32 instead of
>>     MACH_STM32MP157
>>   mtd: rawnand: stm32_fmc2: depends on ARCH_STM32 instead of
>>     MACH_STM32MP157
> 
> I don't see issue with taking these two patches in independent trees so
> if nobody disagrees I will take the second one through the mtd tree and
> let Krzysztof take the first one through mem-ctrl.

Sure, np.

Best regards,
Krzysztof


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

* Re: [PATCH 0/2] depends on ARCH_STM32 instead of MACH_STM32MP157
@ 2023-03-27 16:05     ` Krzysztof Kozlowski
  0 siblings, 0 replies; 14+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-27 16:05 UTC (permalink / raw)
  To: Miquel Raynal, Christophe Kerello
  Cc: richard, vigneshr, linux-mtd, linux-kernel, linux-stm32

On 24/03/2023 17:03, Miquel Raynal wrote:
> Hi Christophe,
> 
> christophe.kerello@foss.st.com wrote on Fri, 24 Mar 2023 16:51:03 +0100:
> 
>> To be able to compile the driver on all STM32MP SOCs, we move the
>> "depends on" on ARCH_STM32.
>>
>> Christophe Kerello (2):
>>   memory: stm32-fmc2-ebi: depends on ARCH_STM32 instead of
>>     MACH_STM32MP157
>>   mtd: rawnand: stm32_fmc2: depends on ARCH_STM32 instead of
>>     MACH_STM32MP157
> 
> I don't see issue with taking these two patches in independent trees so
> if nobody disagrees I will take the second one through the mtd tree and
> let Krzysztof take the first one through mem-ctrl.

Sure, np.

Best regards,
Krzysztof


______________________________________________________
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 1/2] memory: stm32-fmc2-ebi: depends on ARCH_STM32 instead of MACH_STM32MP157
  2023-03-24 15:51   ` Christophe Kerello
@ 2023-03-27 16:07     ` Krzysztof Kozlowski
  -1 siblings, 0 replies; 14+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-27 16:07 UTC (permalink / raw)
  To: miquel.raynal, richard, vigneshr, Christophe Kerello
  Cc: Krzysztof Kozlowski, linux-stm32, linux-kernel, linux-mtd

On Fri, 24 Mar 2023 16:51:04 +0100, Christophe Kerello wrote:
> To be able to compile the driver on all STM32MP SOCs, we move the
> "depends on" on ARCH_STM32.
> 
> 

Applied, thanks!

[1/2] memory: stm32-fmc2-ebi: depends on ARCH_STM32 instead of MACH_STM32MP157
      https://git.kernel.org/krzk/linux-mem-ctrl/c/20c082a2ba25374a13505b78cdad7f6a2cf8d763

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

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

* Re: (subset) [PATCH 1/2] memory: stm32-fmc2-ebi: depends on ARCH_STM32 instead of MACH_STM32MP157
@ 2023-03-27 16:07     ` Krzysztof Kozlowski
  0 siblings, 0 replies; 14+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-27 16:07 UTC (permalink / raw)
  To: miquel.raynal, richard, vigneshr, Christophe Kerello
  Cc: Krzysztof Kozlowski, linux-stm32, linux-kernel, linux-mtd

On Fri, 24 Mar 2023 16:51:04 +0100, Christophe Kerello wrote:
> To be able to compile the driver on all STM32MP SOCs, we move the
> "depends on" on ARCH_STM32.
> 
> 

Applied, thanks!

[1/2] memory: stm32-fmc2-ebi: depends on ARCH_STM32 instead of MACH_STM32MP157
      https://git.kernel.org/krzk/linux-mem-ctrl/c/20c082a2ba25374a13505b78cdad7f6a2cf8d763

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

* Re: [PATCH 2/2] mtd: rawnand: stm32_fmc2: depends on ARCH_STM32 instead of MACH_STM32MP157
  2023-03-24 15:51   ` Christophe Kerello
@ 2023-03-28 14:31     ` Miquel Raynal
  -1 siblings, 0 replies; 14+ messages in thread
From: Miquel Raynal @ 2023-03-28 14:31 UTC (permalink / raw)
  To: Christophe Kerello, miquel.raynal, richard, vigneshr,
	krzysztof.kozlowski
  Cc: linux-mtd, linux-kernel, linux-stm32

On Fri, 2023-03-24 at 15:51:05 UTC, Christophe Kerello wrote:
> To be able to compile the driver on all STM32MP SOCs, we move the
> "depends on" on ARCH_STM32.
> 
> Signed-off-by: Christophe Kerello <christophe.kerello@foss.st.com>

Applied to https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next, thanks.

Miquel

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

* Re: [PATCH 2/2] mtd: rawnand: stm32_fmc2: depends on ARCH_STM32 instead of MACH_STM32MP157
@ 2023-03-28 14:31     ` Miquel Raynal
  0 siblings, 0 replies; 14+ messages in thread
From: Miquel Raynal @ 2023-03-28 14:31 UTC (permalink / raw)
  To: Christophe Kerello, miquel.raynal, richard, vigneshr,
	krzysztof.kozlowski
  Cc: linux-mtd, linux-kernel, linux-stm32

On Fri, 2023-03-24 at 15:51:05 UTC, Christophe Kerello wrote:
> To be able to compile the driver on all STM32MP SOCs, we move the
> "depends on" on ARCH_STM32.
> 
> Signed-off-by: Christophe Kerello <christophe.kerello@foss.st.com>

Applied to https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next, thanks.

Miquel

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

end of thread, other threads:[~2023-03-28 14:32 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-24 15:51 [PATCH 0/2] depends on ARCH_STM32 instead of MACH_STM32MP157 Christophe Kerello
2023-03-24 15:51 ` Christophe Kerello
2023-03-24 15:51 ` [PATCH 1/2] memory: stm32-fmc2-ebi: " Christophe Kerello
2023-03-24 15:51   ` Christophe Kerello
2023-03-27 16:07   ` (subset) " Krzysztof Kozlowski
2023-03-27 16:07     ` Krzysztof Kozlowski
2023-03-24 15:51 ` [PATCH 2/2] mtd: rawnand: stm32_fmc2: " Christophe Kerello
2023-03-24 15:51   ` Christophe Kerello
2023-03-28 14:31   ` Miquel Raynal
2023-03-28 14:31     ` Miquel Raynal
2023-03-24 16:03 ` [PATCH 0/2] " Miquel Raynal
2023-03-24 16:03   ` Miquel Raynal
2023-03-27 16:05   ` Krzysztof Kozlowski
2023-03-27 16:05     ` Krzysztof Kozlowski

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.