linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [v2] mtd: cfi: allow building spi-intel standalone
@ 2022-12-20 14:13 Arnd Bergmann
  2022-12-20 14:19 ` Mika Westerberg
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Arnd Bergmann @ 2022-12-20 14:13 UTC (permalink / raw)
  To: Tudor Ambarus, Pratyush Yadav
  Cc: Arnd Bergmann, Michael Walle, Miquel Raynal, Richard Weinberger,
	Vignesh Raghavendra, Takahiro Kuwano, Sai Krishna Potthuri,
	Boris Brezillon, Mauro Lima, Mika Westerberg, linux-mtd,
	linux-kernel

From: Arnd Bergmann <arnd@arndb.de>

When MTD or MTD_CFI_GEOMETRY is disabled, the spi-intel driver
fails to build, as it includes the shared CFI header:

include/linux/mtd/cfi.h:62:2: error: #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work. [-Werror=cpp]
   62 | #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work.

linux/mtd/spi-nor.h does not actually need to include cfi.h, so
remove the inclusion here to fix the warning. This uncovers a
missing #include in spi-nor/core.c so add that there to
prevent a different build issue.

Fixes: e23e5a05d1fd ("mtd: spi-nor: intel-spi: Convert to SPI MEM")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/mtd/spi-nor/core.c  | 1 +
 include/linux/mtd/spi-nor.h | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/spi-nor/core.c b/drivers/mtd/spi-nor/core.c
index d8703d7dfd0a..d67c926bca8b 100644
--- a/drivers/mtd/spi-nor/core.c
+++ b/drivers/mtd/spi-nor/core.c
@@ -10,6 +10,7 @@
 #include <linux/err.h>
 #include <linux/errno.h>
 #include <linux/module.h>
+#include <linux/delay.h>
 #include <linux/device.h>
 #include <linux/mutex.h>
 #include <linux/math64.h>
diff --git a/include/linux/mtd/spi-nor.h b/include/linux/mtd/spi-nor.h
index 25765556223a..a3f8cdca90c8 100644
--- a/include/linux/mtd/spi-nor.h
+++ b/include/linux/mtd/spi-nor.h
@@ -7,7 +7,6 @@
 #define __LINUX_MTD_SPI_NOR_H
 
 #include <linux/bitops.h>
-#include <linux/mtd/cfi.h>
 #include <linux/mtd/mtd.h>
 #include <linux/spi/spi-mem.h>
 
-- 
2.35.1


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

* Re: [PATCH] [v2] mtd: cfi: allow building spi-intel standalone
  2022-12-20 14:13 [PATCH] [v2] mtd: cfi: allow building spi-intel standalone Arnd Bergmann
@ 2022-12-20 14:19 ` Mika Westerberg
  2022-12-20 15:44 ` Tudor Ambarus
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 10+ messages in thread
From: Mika Westerberg @ 2022-12-20 14:19 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Tudor Ambarus, Pratyush Yadav, Arnd Bergmann, Michael Walle,
	Miquel Raynal, Richard Weinberger, Vignesh Raghavendra,
	Takahiro Kuwano, Sai Krishna Potthuri, Boris Brezillon,
	Mauro Lima, linux-mtd, linux-kernel

On Tue, Dec 20, 2022 at 03:13:34PM +0100, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> When MTD or MTD_CFI_GEOMETRY is disabled, the spi-intel driver
> fails to build, as it includes the shared CFI header:
> 
> include/linux/mtd/cfi.h:62:2: error: #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work. [-Werror=cpp]
>    62 | #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work.
> 
> linux/mtd/spi-nor.h does not actually need to include cfi.h, so
> remove the inclusion here to fix the warning. This uncovers a
> missing #include in spi-nor/core.c so add that there to
> prevent a different build issue.
> 
> Fixes: e23e5a05d1fd ("mtd: spi-nor: intel-spi: Convert to SPI MEM")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>

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

* Re: [PATCH] [v2] mtd: cfi: allow building spi-intel standalone
  2022-12-20 14:13 [PATCH] [v2] mtd: cfi: allow building spi-intel standalone Arnd Bergmann
  2022-12-20 14:19 ` Mika Westerberg
@ 2022-12-20 15:44 ` Tudor Ambarus
  2022-12-20 15:57   ` Miquel Raynal
  2022-12-21 16:47 ` Tokunori Ikegami
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Tudor Ambarus @ 2022-12-20 15:44 UTC (permalink / raw)
  To: Arnd Bergmann, Tudor Ambarus, Pratyush Yadav
  Cc: Arnd Bergmann, Michael Walle, Miquel Raynal, Richard Weinberger,
	Vignesh Raghavendra, Takahiro Kuwano, Sai Krishna Potthuri,
	Boris Brezillon, Mauro Lima, Mika Westerberg, linux-mtd,
	linux-kernel

Hi, Arnd,

On 20.12.2022 16:13, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> When MTD or MTD_CFI_GEOMETRY is disabled, the spi-intel driver
> fails to build, as it includes the shared CFI header:
> 
> include/linux/mtd/cfi.h:62:2: error: #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work. [-Werror=cpp]
>     62 | #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work.
> 
> linux/mtd/spi-nor.h does not actually need to include cfi.h, so
> remove the inclusion here to fix the warning. This uncovers a
> missing #include in spi-nor/core.c so add that there to
> prevent a different build issue.
> 
> Fixes: e23e5a05d1fd ("mtd: spi-nor: intel-spi: Convert to SPI MEM")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Looks good to me. I'll let the linux-0day bot run over it and apply it
once -rc1 is out.

Thanks,
ta

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

* Re: [PATCH] [v2] mtd: cfi: allow building spi-intel standalone
  2022-12-20 15:44 ` Tudor Ambarus
@ 2022-12-20 15:57   ` Miquel Raynal
  2022-12-21  6:49     ` Tudor Ambarus
  0 siblings, 1 reply; 10+ messages in thread
From: Miquel Raynal @ 2022-12-20 15:57 UTC (permalink / raw)
  To: Tudor Ambarus
  Cc: Arnd Bergmann, Tudor Ambarus, Pratyush Yadav, Arnd Bergmann,
	Michael Walle, Richard Weinberger, Vignesh Raghavendra,
	Takahiro Kuwano, Sai Krishna Potthuri, Boris Brezillon,
	Mauro Lima, Mika Westerberg, linux-mtd, linux-kernel

Hi Tudor,

tudor.ambarus@linaro.org wrote on Tue, 20 Dec 2022 17:44:49 +0200:

> Hi, Arnd,
> 
> On 20.12.2022 16:13, Arnd Bergmann wrote:
> > From: Arnd Bergmann <arnd@arndb.de>
> > 
> > When MTD or MTD_CFI_GEOMETRY is disabled, the spi-intel driver
> > fails to build, as it includes the shared CFI header:
> > 
> > include/linux/mtd/cfi.h:62:2: error: #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work. [-Werror=cpp]
> >     62 | #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work.
> > 
> > linux/mtd/spi-nor.h does not actually need to include cfi.h, so
> > remove the inclusion here to fix the warning. This uncovers a
> > missing #include in spi-nor/core.c so add that there to
> > prevent a different build issue.
> > 
> > Fixes: e23e5a05d1fd ("mtd: spi-nor: intel-spi: Convert to SPI MEM")
> > Signed-off-by: Arnd Bergmann <arnd@arndb.de>  
> 
> Looks good to me. I'll let the linux-0day bot run over it and apply it
> once -rc1 is out.

The issue sometimes produces build errors, shall I send it through a
fixes PR instead?

Thanks,
Miquèl

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

* Re: [PATCH] [v2] mtd: cfi: allow building spi-intel standalone
  2022-12-20 15:57   ` Miquel Raynal
@ 2022-12-21  6:49     ` Tudor Ambarus
  2022-12-26 14:22       ` Tudor Ambarus
  0 siblings, 1 reply; 10+ messages in thread
From: Tudor Ambarus @ 2022-12-21  6:49 UTC (permalink / raw)
  To: Miquel Raynal
  Cc: Arnd Bergmann, Tudor Ambarus, Pratyush Yadav, Arnd Bergmann,
	Michael Walle, Richard Weinberger, Vignesh Raghavendra,
	Takahiro Kuwano, Sai Krishna Potthuri, Boris Brezillon,
	Mauro Lima, Mika Westerberg, linux-mtd, linux-kernel



On 20.12.2022 17:57, Miquel Raynal wrote:
> Hi Tudor,
> 

Hi,

> tudor.ambarus@linaro.org wrote on Tue, 20 Dec 2022 17:44:49 +0200:
> 
>> Hi, Arnd,
>>
>> On 20.12.2022 16:13, Arnd Bergmann wrote:
>>> From: Arnd Bergmann <arnd@arndb.de>
>>>
>>> When MTD or MTD_CFI_GEOMETRY is disabled, the spi-intel driver
>>> fails to build, as it includes the shared CFI header:
>>>
>>> include/linux/mtd/cfi.h:62:2: error: #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work. [-Werror=cpp]
>>>      62 | #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work.
>>>
>>> linux/mtd/spi-nor.h does not actually need to include cfi.h, so
>>> remove the inclusion here to fix the warning. This uncovers a
>>> missing #include in spi-nor/core.c so add that there to
>>> prevent a different build issue.
>>>
>>> Fixes: e23e5a05d1fd ("mtd: spi-nor: intel-spi: Convert to SPI MEM")
>>> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
>>
>> Looks good to me. I'll let the linux-0day bot run over it and apply it
>> once -rc1 is out.
> 
> The issue sometimes produces build errors, shall I send it through a
> fixes PR instead?
> 

Yes, that I was thinking about.

Thanks,
ta

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

* Re: [PATCH] [v2] mtd: cfi: allow building spi-intel standalone
  2022-12-20 14:13 [PATCH] [v2] mtd: cfi: allow building spi-intel standalone Arnd Bergmann
  2022-12-20 14:19 ` Mika Westerberg
  2022-12-20 15:44 ` Tudor Ambarus
@ 2022-12-21 16:47 ` Tokunori Ikegami
  2022-12-26 14:14 ` Pratyush Yadav
  2023-01-02 11:17 ` Miquel Raynal
  4 siblings, 0 replies; 10+ messages in thread
From: Tokunori Ikegami @ 2022-12-21 16:47 UTC (permalink / raw)
  To: Arnd Bergmann, Tudor Ambarus, Pratyush Yadav
  Cc: Arnd Bergmann, Michael Walle, Miquel Raynal, Richard Weinberger,
	Vignesh Raghavendra, Takahiro Kuwano, Sai Krishna Potthuri,
	Boris Brezillon, Mauro Lima, Mika Westerberg, linux-mtd,
	linux-kernel


On 2022/12/20 23:13, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
>
> When MTD or MTD_CFI_GEOMETRY is disabled, the spi-intel driver
> fails to build, as it includes the shared CFI header:
>
> include/linux/mtd/cfi.h:62:2: error: #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work. [-Werror=cpp]
>     62 | #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work.
>
> linux/mtd/spi-nor.h does not actually need to include cfi.h, so
> remove the inclusion here to fix the warning. This uncovers a
> missing #include in spi-nor/core.c so add that there to
> prevent a different build issue.
Reviewed-by: Tokunori Ikegami <ikegami.t@gmail.com>
>
> Fixes: e23e5a05d1fd ("mtd: spi-nor: intel-spi: Convert to SPI MEM")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
> ---
>   drivers/mtd/spi-nor/core.c  | 1 +
>   include/linux/mtd/spi-nor.h | 1 -
>   2 files changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mtd/spi-nor/core.c b/drivers/mtd/spi-nor/core.c
> index d8703d7dfd0a..d67c926bca8b 100644
> --- a/drivers/mtd/spi-nor/core.c
> +++ b/drivers/mtd/spi-nor/core.c
> @@ -10,6 +10,7 @@
>   #include <linux/err.h>
>   #include <linux/errno.h>
>   #include <linux/module.h>
> +#include <linux/delay.h>
>   #include <linux/device.h>
>   #include <linux/mutex.h>
>   #include <linux/math64.h>
> diff --git a/include/linux/mtd/spi-nor.h b/include/linux/mtd/spi-nor.h
> index 25765556223a..a3f8cdca90c8 100644
> --- a/include/linux/mtd/spi-nor.h
> +++ b/include/linux/mtd/spi-nor.h
> @@ -7,7 +7,6 @@
>   #define __LINUX_MTD_SPI_NOR_H
>   
>   #include <linux/bitops.h>
> -#include <linux/mtd/cfi.h>
>   #include <linux/mtd/mtd.h>
>   #include <linux/spi/spi-mem.h>
>   

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

* Re: [PATCH] [v2] mtd: cfi: allow building spi-intel standalone
  2022-12-20 14:13 [PATCH] [v2] mtd: cfi: allow building spi-intel standalone Arnd Bergmann
                   ` (2 preceding siblings ...)
  2022-12-21 16:47 ` Tokunori Ikegami
@ 2022-12-26 14:14 ` Pratyush Yadav
  2023-01-02 11:17 ` Miquel Raynal
  4 siblings, 0 replies; 10+ messages in thread
From: Pratyush Yadav @ 2022-12-26 14:14 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Tudor Ambarus, Arnd Bergmann, Michael Walle, Miquel Raynal,
	Richard Weinberger, Vignesh Raghavendra, Takahiro Kuwano,
	Sai Krishna Potthuri, Boris Brezillon, Mauro Lima,
	Mika Westerberg, linux-mtd, linux-kernel

On 20/12/22 03:13PM, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> When MTD or MTD_CFI_GEOMETRY is disabled, the spi-intel driver
> fails to build, as it includes the shared CFI header:
> 
> include/linux/mtd/cfi.h:62:2: error: #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work. [-Werror=cpp]
>    62 | #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work.
> 
> linux/mtd/spi-nor.h does not actually need to include cfi.h, so
> remove the inclusion here to fix the warning. This uncovers a
> missing #include in spi-nor/core.c so add that there to
> prevent a different build issue.
> 
> Fixes: e23e5a05d1fd ("mtd: spi-nor: intel-spi: Convert to SPI MEM")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Acked-by: Pratyush Yadav <pratyush@kernel.org>

-- 
Regards,
Pratyush Yadav

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

* Re: [PATCH] [v2] mtd: cfi: allow building spi-intel standalone
  2022-12-21  6:49     ` Tudor Ambarus
@ 2022-12-26 14:22       ` Tudor Ambarus
  2022-12-30 12:50         ` Miquel Raynal
  0 siblings, 1 reply; 10+ messages in thread
From: Tudor Ambarus @ 2022-12-26 14:22 UTC (permalink / raw)
  To: Miquel Raynal
  Cc: Arnd Bergmann, Tudor Ambarus, Pratyush Yadav, Arnd Bergmann,
	Michael Walle, Richard Weinberger, Vignesh Raghavendra,
	Takahiro Kuwano, Sai Krishna Potthuri, Boris Brezillon,
	Mauro Lima, Mika Westerberg, linux-mtd, linux-kernel



On 21.12.2022 08:49, Tudor Ambarus wrote:
> 
> 
> On 20.12.2022 17:57, Miquel Raynal wrote:
>> Hi Tudor,
>>
> 
> Hi,
> 
>> tudor.ambarus@linaro.org wrote on Tue, 20 Dec 2022 17:44:49 +0200:
>>
>>> Hi, Arnd,
>>>
>>> On 20.12.2022 16:13, Arnd Bergmann wrote:
>>>> From: Arnd Bergmann <arnd@arndb.de>
>>>>
>>>> When MTD or MTD_CFI_GEOMETRY is disabled, the spi-intel driver
>>>> fails to build, as it includes the shared CFI header:
>>>>
>>>> include/linux/mtd/cfi.h:62:2: error: #warning No CONFIG_MTD_CFI_Ix 
>>>> selected. No NOR chip support can work. [-Werror=cpp]
>>>>      62 | #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip 
>>>> support can work.
>>>>
>>>> linux/mtd/spi-nor.h does not actually need to include cfi.h, so
>>>> remove the inclusion here to fix the warning. This uncovers a
>>>> missing #include in spi-nor/core.c so add that there to
>>>> prevent a different build issue.
>>>>
>>>> Fixes: e23e5a05d1fd ("mtd: spi-nor: intel-spi: Convert to SPI MEM")
>>>> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
>>>
>>> Looks good to me. I'll let the linux-0day bot run over it and apply it
>>> once -rc1 is out.
>>
>> The issue sometimes produces build errors, shall I send it through a
>> fixes PR instead?
>>
> 
> Yes, that I was thinking about.
> 

Seems that I shouldn't push to mtd/fixes, so:
Reviewed-by: Tudor Ambarus <tudor.ambarus@linaro.org>



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

* Re: [PATCH] [v2] mtd: cfi: allow building spi-intel standalone
  2022-12-26 14:22       ` Tudor Ambarus
@ 2022-12-30 12:50         ` Miquel Raynal
  0 siblings, 0 replies; 10+ messages in thread
From: Miquel Raynal @ 2022-12-30 12:50 UTC (permalink / raw)
  To: Tudor Ambarus
  Cc: Arnd Bergmann, Tudor Ambarus, Pratyush Yadav, Arnd Bergmann,
	Michael Walle, Richard Weinberger, Vignesh Raghavendra,
	Takahiro Kuwano, Sai Krishna Potthuri, Boris Brezillon,
	Mauro Lima, Mika Westerberg, linux-mtd, linux-kernel

Hi Tudor,

tudor.ambarus@linaro.org wrote on Mon, 26 Dec 2022 16:22:02 +0200:

> On 21.12.2022 08:49, Tudor Ambarus wrote:
> > 
> > 
> > On 20.12.2022 17:57, Miquel Raynal wrote:  
> >> Hi Tudor,
> >>  
> > 
> > Hi,
> >   
> >> tudor.ambarus@linaro.org wrote on Tue, 20 Dec 2022 17:44:49 +0200:
> >>  
> >>> Hi, Arnd,
> >>>
> >>> On 20.12.2022 16:13, Arnd Bergmann wrote:  
> >>>> From: Arnd Bergmann <arnd@arndb.de>
> >>>>
> >>>> When MTD or MTD_CFI_GEOMETRY is disabled, the spi-intel driver
> >>>> fails to build, as it includes the shared CFI header:
> >>>>
> >>>> include/linux/mtd/cfi.h:62:2: error: #warning No CONFIG_MTD_CFI_Ix >>>> selected. No NOR chip support can work. [-Werror=cpp]
> >>>>      62 | #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip >>>> support can work.
> >>>>
> >>>> linux/mtd/spi-nor.h does not actually need to include cfi.h, so
> >>>> remove the inclusion here to fix the warning. This uncovers a
> >>>> missing #include in spi-nor/core.c so add that there to
> >>>> prevent a different build issue.
> >>>>
> >>>> Fixes: e23e5a05d1fd ("mtd: spi-nor: intel-spi: Convert to SPI MEM")
> >>>> Signed-off-by: Arnd Bergmann <arnd@arndb.de>  
> >>>
> >>> Looks good to me. I'll let the linux-0day bot run over it and apply it
> >>> once -rc1 is out.  
> >>
> >> The issue sometimes produces build errors, shall I send it through a
> >> fixes PR instead?
> >>  
> > 
> > Yes, that I was thinking about.
> >   
> 
> Seems that I shouldn't push to mtd/fixes, so:
> Reviewed-by: Tudor Ambarus <tudor.ambarus@linaro.org>

Oh yes you can, sorry for the misunderstanding, but as I am often alone
to do it, I read your "I will apply" message last time and understood "I
will apply on spi-nor/next". 

You can update mtd/fixes to -rc1 and push the patch, as long as we keep
each other in sync ;)

Thanks!
Miquèl

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

* Re: [PATCH] [v2] mtd: cfi: allow building spi-intel standalone
  2022-12-20 14:13 [PATCH] [v2] mtd: cfi: allow building spi-intel standalone Arnd Bergmann
                   ` (3 preceding siblings ...)
  2022-12-26 14:14 ` Pratyush Yadav
@ 2023-01-02 11:17 ` Miquel Raynal
  4 siblings, 0 replies; 10+ messages in thread
From: Miquel Raynal @ 2023-01-02 11:17 UTC (permalink / raw)
  To: Arnd Bergmann, Tudor Ambarus, Pratyush Yadav
  Cc: Miquel Raynal, Arnd Bergmann, Michael Walle, Richard Weinberger,
	Vignesh Raghavendra, Takahiro Kuwano, Sai Krishna Potthuri,
	Boris Brezillon, Mauro Lima, Mika Westerberg, linux-mtd,
	linux-kernel

On Tue, 2022-12-20 at 14:13:34 UTC, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> When MTD or MTD_CFI_GEOMETRY is disabled, the spi-intel driver
> fails to build, as it includes the shared CFI header:
> 
> include/linux/mtd/cfi.h:62:2: error: #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work. [-Werror=cpp]
>    62 | #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work.
> 
> linux/mtd/spi-nor.h does not actually need to include cfi.h, so
> remove the inclusion here to fix the warning. This uncovers a
> missing #include in spi-nor/core.c so add that there to
> prevent a different build issue.
> 
> Fixes: e23e5a05d1fd ("mtd: spi-nor: intel-spi: Convert to SPI MEM")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
> Reviewed-by: Tokunori Ikegami <ikegami.t@gmail.com>
> Acked-by: Pratyush Yadav <pratyush@kernel.org>
> Reviewed-by: Tudor Ambarus <tudor.ambarus@linaro.org>

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

Miquel

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

end of thread, other threads:[~2023-01-02 11:17 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-20 14:13 [PATCH] [v2] mtd: cfi: allow building spi-intel standalone Arnd Bergmann
2022-12-20 14:19 ` Mika Westerberg
2022-12-20 15:44 ` Tudor Ambarus
2022-12-20 15:57   ` Miquel Raynal
2022-12-21  6:49     ` Tudor Ambarus
2022-12-26 14:22       ` Tudor Ambarus
2022-12-30 12:50         ` Miquel Raynal
2022-12-21 16:47 ` Tokunori Ikegami
2022-12-26 14:14 ` Pratyush Yadav
2023-01-02 11:17 ` Miquel Raynal

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