mbox series

[GIT,PULL,v2] mtd: spi-nor: changes for v6.12

Message ID mafs0o74q9q7g.fsf@kernel.org
State New
Headers show
Series [GIT,PULL,v2] mtd: spi-nor: changes for v6.12 | expand

Pull-request

https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/spi-nor/for-6.12

Message

Pratyush Yadav Sept. 14, 2024, 4:04 p.m. UTC
Hi Miquel,

I have rebased my branch onto v6.11-rc1 and force pushed the branch and
tag. Here is the updated version of the pull request.

Regards,
Pratyush Yadav

The following changes since commit 8400291e289ee6b2bf9779ff1c83a291501f017b:

  Linux 6.11-rc1 (2024-07-28 14:19:55 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/spi-nor/for-6.12

for you to fetch changes up to ac5bfa968b60fba409942ab594ad98479b4e1223:

  mtd: spi-nor: fix flash probing (2024-09-14 17:56:31 +0200)

----------------------------------------------------------------
SPI NOR changes for 6.12

Notable changes:

- Add Write Protect support for N25Q064A.

- New flash support for Zetta ZD25Q128C and Spansion S28HS256T.

- Fix a NULL dereference in probe path for flashes without a name. The
  probe path tries to access the name without checking its existence
  first. S28HS256T is the first flash to define its entry without a
  name, uncovering this issue.

----------------------------------------------------------------
Brian Norris (1):
      mtd: spi-nor: micron-st: Add n25q064a WP support

Csókás, Bence (1):
      mtd: spi-nor: sst: Factor out common write operation to `sst_nor_write_data()`

Michael Walle (2):
      mtd: spi-nor: winbond: add Zetta ZD25Q128C support
      mtd: spi-nor: fix flash probing

Takahiro Kuwano (1):
      mtd: spi-nor: spansion: Add support for S28HS256T

 drivers/mtd/spi-nor/core.c      |  3 ++-
 drivers/mtd/spi-nor/micron-st.c |  2 ++
 drivers/mtd/spi-nor/spansion.c  |  4 ++++
 drivers/mtd/spi-nor/sst.c       | 39 +++++++++++++++++++--------------------
 drivers/mtd/spi-nor/winbond.c   | 26 ++++++++++++++++++++++++++
 5 files changed, 53 insertions(+), 21 deletions(-)

Comments

Miquel Raynal Sept. 15, 2024, 10:51 a.m. UTC | #1
Hi Pratyush,

pratyush@kernel.org wrote on Sat, 14 Sep 2024 18:04:35 +0200:

> Hi Miquel,
> 
> I have rebased my branch onto v6.11-rc1 and force pushed the branch and
> tag. Here is the updated version of the pull request.
> 
> Regards,
> Pratyush Yadav
> 
> The following changes since commit 8400291e289ee6b2bf9779ff1c83a291501f017b:
> 
>   Linux 6.11-rc1 (2024-07-28 14:19:55 -0700)
> 
> are available in the Git repository at:
> 
>   https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/spi-nor/for-6.12
> 
> for you to fetch changes up to ac5bfa968b60fba409942ab594ad98479b4e1223:
> 
>   mtd: spi-nor: fix flash probing (2024-09-14 17:56:31 +0200)

Pulled into mtd/next, thanks!

Miquèl