mbox series

[GIT,PULL] mtd: nand: Changes for 5.15

Message ID 20210903000310.6cd0fbff@xps13
State Not Applicable
Headers show
Series [GIT,PULL] mtd: nand: Changes for 5.15 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/nand/for-5.15

Message

Miquel Raynal Sept. 2, 2021, 10:03 p.m. UTC
Hello,

This is the NAND PR for 5.15.

Thanks,
Miquèl

The following changes since commit e73f0f0ee7541171d89f2e2491130c7771ba58d3:

  Linux 5.14-rc1 (2021-07-11 15:07:40 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/nand/for-5.15

for you to fetch changes up to 6b430c7595e4eb95fae8fb54adc3c3ce002e75ae:

  mtd: rawnand: cafe: Fix a resource leak in the error handling path of 'cafe_nand_probe()' (2021-08-23 10:58:14 +0200)

----------------------------------------------------------------
NAND core changes:
* Repair Miquel Raynal's email address in MAINTAINERS
* Fix a couple of spelling mistakes in Kconfig
* bbt: Skip bad blocks when searching for the BBT in NAND
* Remove never changed ret variable

Raw NAND changes:
* cafe: Fix a resource leak in the error handling path of 'cafe_nand_probe()'
* intel: Fix error handling in probe
* omap: Fix kernel doc warning on 'calcuate' typo
* gpmc: Fix the ECC bytes vs. OOB bytes equation

SPI-NAND core changes:
* Properly fill the OOB area.
* Fix comment

SPI-NAND drivers changes:
* macronix: Add Quad support for serial NAND flash

----------------------------------------------------------------
Christophe JAILLET (1):
      mtd: rawnand: cafe: Fix a resource leak in the error handling path of 'cafe_nand_probe()'

Colin Ian King (1):
      mtd: rawnand: Fix a couple of spelling mistakes in Kconfig

Daniel Palmer (1):
      mtd: spinand: core: Properly fill the OOB area.

Evgeny Novikov (1):
      mtd: rawnand: intel: Fix error handling in probe

Jaime Liao (1):
      mtd: spinand: macronix: Add Quad support for serial NAND flash

Jason Wang (1):
      mtd: rawnand: remove never changed ret variable

Lukas Bulwahn (1):
      MAINTAINERS: repair Miquel Raynal's email address

Miquel Raynal (2):
      dt-bindings: mtd: gpmc: Fix the ECC bytes vs. OOB bytes equation
      mtd: spinand: Fix comment

Stefan Riedmueller (1):
      mtd: rawnand: nand_bbt: Skip bad blocks when searching for the BBT in NAND

Vladimir Molokov (1):
      mtd: rawnand: omap: Fix kernel doc warning on 'calcuate' typo

 Documentation/devicetree/bindings/mtd/gpmc-nand.txt |  2 +-
 MAINTAINERS                                         |  4 ++--
 drivers/mtd/nand/raw/Kconfig                        |  4 ++--
 drivers/mtd/nand/raw/cafe_nand.c                    |  4 +++-
 drivers/mtd/nand/raw/intel-nand-controller.c        | 27 ++++++++++++++++++---------
 drivers/mtd/nand/raw/meson_nand.c                   |  4 ++--
 drivers/mtd/nand/raw/nand_bbt.c                     | 33 +++++++++++++++++++++++++++++++++
 drivers/mtd/nand/raw/omap2.c                        |  2 +-
 drivers/mtd/nand/spi/core.c                         |  4 +++-
 drivers/mtd/nand/spi/macronix.c                     | 16 ++++++++--------
 10 files changed, 73 insertions(+), 27 deletions(-)

Comments

Miquel Raynal Sept. 2, 2021, 10:10 p.m. UTC | #1
Miquel Raynal <miquel.raynal@bootlin.com> wrote on Fri, 3 Sep 2021
00:03:10 +0200:

> Hello,
> 
> This is the NAND PR for 5.15.
> 
> Thanks,
> Miquèl
> 
> The following changes since commit e73f0f0ee7541171d89f2e2491130c7771ba58d3:
> 
>   Linux 5.14-rc1 (2021-07-11 15:07:40 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/nand/for-5.15
> 
> for you to fetch changes up to 6b430c7595e4eb95fae8fb54adc3c3ce002e75ae:
> 
>   mtd: rawnand: cafe: Fix a resource leak in the error handling path of 'cafe_nand_probe()' (2021-08-23 10:58:14 +0200)
> 
> ----------------------------------------------------------------
> NAND core changes:
> * Repair Miquel Raynal's email address in MAINTAINERS
> * Fix a couple of spelling mistakes in Kconfig
> * bbt: Skip bad blocks when searching for the BBT in NAND
> * Remove never changed ret variable
> 
> Raw NAND changes:
> * cafe: Fix a resource leak in the error handling path of 'cafe_nand_probe()'
> * intel: Fix error handling in probe
> * omap: Fix kernel doc warning on 'calcuate' typo
> * gpmc: Fix the ECC bytes vs. OOB bytes equation
> 
> SPI-NAND core changes:
> * Properly fill the OOB area.
> * Fix comment
> 
> SPI-NAND drivers changes:
> * macronix: Add Quad support for serial NAND flash
> 
> ----------------------------------------------------------------
> Christophe JAILLET (1):
>       mtd: rawnand: cafe: Fix a resource leak in the error handling path of 'cafe_nand_probe()'
> 
> Colin Ian King (1):
>       mtd: rawnand: Fix a couple of spelling mistakes in Kconfig
> 
> Daniel Palmer (1):
>       mtd: spinand: core: Properly fill the OOB area.
> 
> Evgeny Novikov (1):
>       mtd: rawnand: intel: Fix error handling in probe
> 
> Jaime Liao (1):
>       mtd: spinand: macronix: Add Quad support for serial NAND flash
> 
> Jason Wang (1):
>       mtd: rawnand: remove never changed ret variable
> 
> Lukas Bulwahn (1):
>       MAINTAINERS: repair Miquel Raynal's email address
> 
> Miquel Raynal (2):
>       dt-bindings: mtd: gpmc: Fix the ECC bytes vs. OOB bytes equation
>       mtd: spinand: Fix comment
> 
> Stefan Riedmueller (1):
>       mtd: rawnand: nand_bbt: Skip bad blocks when searching for the BBT in NAND
> 
> Vladimir Molokov (1):
>       mtd: rawnand: omap: Fix kernel doc warning on 'calcuate' typo
> 
>  Documentation/devicetree/bindings/mtd/gpmc-nand.txt |  2 +-
>  MAINTAINERS                                         |  4 ++--
>  drivers/mtd/nand/raw/Kconfig                        |  4 ++--
>  drivers/mtd/nand/raw/cafe_nand.c                    |  4 +++-
>  drivers/mtd/nand/raw/intel-nand-controller.c        | 27 ++++++++++++++++++---------
>  drivers/mtd/nand/raw/meson_nand.c                   |  4 ++--
>  drivers/mtd/nand/raw/nand_bbt.c                     | 33 +++++++++++++++++++++++++++++++++
>  drivers/mtd/nand/raw/omap2.c                        |  2 +-
>  drivers/mtd/nand/spi/core.c                         |  4 +++-
>  drivers/mtd/nand/spi/macronix.c                     | 16 ++++++++--------
>  10 files changed, 73 insertions(+), 27 deletions(-)

Pulled into mtd/next.