All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] mtd: spi-nor: Changes for 4.19
@ 2018-08-01  7:31 Boris Brezillon
  2018-08-11 10:20 ` Boris Brezillon
  0 siblings, 1 reply; 2+ messages in thread
From: Boris Brezillon @ 2018-08-01  7:31 UTC (permalink / raw)
  To: Marek Vasut, Brian Norris, Richard Weinberger, David Woodhouse,
	linux-mtd

Hello,

Here is the spi-nor PR for 4.19.

Regards,

Boris

The following changes since commit ce397d215ccd07b8ae3f71db689aedb85d56ab40:

  Linux 4.18-rc1 (2018-06-17 08:04:49 +0900)

are available in the git repository at:

  git://git.infradead.org/linux-mtd.git tags/spi-nor/for-4.19

for you to fetch changes up to bb276262e88dae52cc717bb636b7468f66bb234e:

  mtd: spi-nor: only apply reset hacks to broken hardware (2018-08-01 09:27:38 +0200)

----------------------------------------------------------------
Core changes:
- Apply reset hacks only when reset is explicitly marked as broken in
  the DT

Driver changes:
- Minor cleanup/fixes in the m25p80 driver
- Release flash_np in the nxp-spifi driver
- Add suspend/resume hooks to the atmel-quadspi driver
- Include gpio/consumer.h instead of gpio.h in the atmel-quadspi driver
- Use %pK instead of %p in the stm32-quadspi driver
- Improve timeout handling in the cadence-quadspi driver
- Use mtd_device_register() instead of mtd_device_parse_register() in
  the intel-spi driver

----------------------------------------------------------------
Alexey Khoroshilov (1):
      mtd: spi-nor: nxp-spifi: release flash_np in nxp_spifi_probe()

Benjamin Gaignard (1):
      mtd: spi-nor: stm32-quadspi: replace "%p" with "%pK"

Boris Brezillon (3):
      mtd: m25p80: Remove unneeded m25p->command field
      mtd: m25p80: Use SPI_MEM_OP_NO_DUMMY instead of SPI_MEM_OP_DUMMY(0, x)
      mtd: spi-nor: atmel-quadspi: Include gpio/consumer.h instead of gpio.h

Brian Norris (1):
      mtd: spi-nor: only apply reset hacks to broken hardware

Claudiu Beznea (1):
      mtd: spi-nor: atmel-quadspi: add suspend/resume hooks

Nicholas Mc Guire (1):
      mtd: spi-nor: cadence-quadspi: fix timeout handling

Rafał Miłecki (1):
      mtd: spi-nor: intel-spi: use mtd_device_register()

 Documentation/devicetree/bindings/mtd/jedec,spi-nor.txt |  9 +++++++++
 drivers/mtd/devices/m25p80.c                            |  5 +----
 drivers/mtd/spi-nor/atmel-quadspi.c                     | 23 ++++++++++++++++++++++-
 drivers/mtd/spi-nor/cadence-quadspi.c                   | 20 ++++++++------------
 drivers/mtd/spi-nor/intel-spi.c                         |  2 +-
 drivers/mtd/spi-nor/nxp-spifi.c                         |  1 +
 drivers/mtd/spi-nor/spi-nor.c                           | 18 ++++++++++++++++--
 drivers/mtd/spi-nor/stm32-quadspi.c                     |  6 +++---
 include/linux/mtd/spi-nor.h                             |  1 +
 9 files changed, 62 insertions(+), 23 deletions(-)

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

* Re: [GIT PULL] mtd: spi-nor: Changes for 4.19
  2018-08-01  7:31 [GIT PULL] mtd: spi-nor: Changes for 4.19 Boris Brezillon
@ 2018-08-11 10:20 ` Boris Brezillon
  0 siblings, 0 replies; 2+ messages in thread
From: Boris Brezillon @ 2018-08-11 10:20 UTC (permalink / raw)
  To: Marek Vasut, Brian Norris, Richard Weinberger, David Woodhouse,
	linux-mtd

On Wed, 1 Aug 2018 09:31:38 +0200
Boris Brezillon <boris.brezillon@bootlin.com> wrote:

> Hello,
> 
> Here is the spi-nor PR for 4.19.
> 
> Regards,
> 
> Boris
> 
> The following changes since commit ce397d215ccd07b8ae3f71db689aedb85d56ab40:
> 
>   Linux 4.18-rc1 (2018-06-17 08:04:49 +0900)
> 
> are available in the git repository at:
> 
>   git://git.infradead.org/linux-mtd.git tags/spi-nor/for-4.19
> 
> for you to fetch changes up to bb276262e88dae52cc717bb636b7468f66bb234e:
> 
>   mtd: spi-nor: only apply reset hacks to broken hardware (2018-08-01 09:27:38 +0200)

PR merged in mtd/next.

> 
> ----------------------------------------------------------------
> Core changes:
> - Apply reset hacks only when reset is explicitly marked as broken in
>   the DT
> 
> Driver changes:
> - Minor cleanup/fixes in the m25p80 driver
> - Release flash_np in the nxp-spifi driver
> - Add suspend/resume hooks to the atmel-quadspi driver
> - Include gpio/consumer.h instead of gpio.h in the atmel-quadspi driver
> - Use %pK instead of %p in the stm32-quadspi driver
> - Improve timeout handling in the cadence-quadspi driver
> - Use mtd_device_register() instead of mtd_device_parse_register() in
>   the intel-spi driver
> 
> ----------------------------------------------------------------
> Alexey Khoroshilov (1):
>       mtd: spi-nor: nxp-spifi: release flash_np in nxp_spifi_probe()
> 
> Benjamin Gaignard (1):
>       mtd: spi-nor: stm32-quadspi: replace "%p" with "%pK"
> 
> Boris Brezillon (3):
>       mtd: m25p80: Remove unneeded m25p->command field
>       mtd: m25p80: Use SPI_MEM_OP_NO_DUMMY instead of SPI_MEM_OP_DUMMY(0, x)
>       mtd: spi-nor: atmel-quadspi: Include gpio/consumer.h instead of gpio.h
> 
> Brian Norris (1):
>       mtd: spi-nor: only apply reset hacks to broken hardware
> 
> Claudiu Beznea (1):
>       mtd: spi-nor: atmel-quadspi: add suspend/resume hooks
> 
> Nicholas Mc Guire (1):
>       mtd: spi-nor: cadence-quadspi: fix timeout handling
> 
> Rafał Miłecki (1):
>       mtd: spi-nor: intel-spi: use mtd_device_register()
> 
>  Documentation/devicetree/bindings/mtd/jedec,spi-nor.txt |  9 +++++++++
>  drivers/mtd/devices/m25p80.c                            |  5 +----
>  drivers/mtd/spi-nor/atmel-quadspi.c                     | 23 ++++++++++++++++++++++-
>  drivers/mtd/spi-nor/cadence-quadspi.c                   | 20 ++++++++------------
>  drivers/mtd/spi-nor/intel-spi.c                         |  2 +-
>  drivers/mtd/spi-nor/nxp-spifi.c                         |  1 +
>  drivers/mtd/spi-nor/spi-nor.c                           | 18 ++++++++++++++++--
>  drivers/mtd/spi-nor/stm32-quadspi.c                     |  6 +++---
>  include/linux/mtd/spi-nor.h                             |  1 +
>  9 files changed, 62 insertions(+), 23 deletions(-)
> 
> 
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

end of thread, other threads:[~2018-08-11 10:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-01  7:31 [GIT PULL] mtd: spi-nor: Changes for 4.19 Boris Brezillon
2018-08-11 10:20 ` Boris Brezillon

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.