All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL] mtd: nand: Changes for 4.11
@ 2017-02-07  9:09 Boris Brezillon
  2017-02-07  9:46 ` Marek Vasut
  0 siblings, 1 reply; 3+ messages in thread
From: Boris Brezillon @ 2017-02-07  9:09 UTC (permalink / raw)
  To: Brian Norris
  Cc: Marek Vasut, Cyrille Pitchen, Richard Weinberger,
	David Woodhouse, linux-mtd

Hi Brian,

Here is a rather small PR for 4.11. No fancy things in this release, and
not even a single new driver (which is completely my fault since I failed
to review the Arasan driver in time :-().

As usual, let me know if I did something wrong.

Marek, Richard, Cyrille, don't hesitate to point any patches I may have
missed.

Thanks,

Boris

The following changes since commit 566cf877a1fcb6d6dc0126b076aad062054c2637:

  Linux 4.10-rc6 (2017-01-29 14:25:17 -0800)

are available in the git repository at:

  git@github.com:linux-nand/linux.git tags/nand/for-4.11

for you to fetch changes up to a4077ce5871304f8a78f80b74b18b6052a410f1a:

  mtd: nand: Add Winbond manufacturer id (2017-02-06 11:42:43 +0100)

----------------------------------------------------------------
This pull request contains minor fixes/improvements on existing drivers:
- sunxi: avoid busy-waiting for NAND events
- ifc: fix ECC handling on IFC v1.0
- OX820: add explicit dependency on ARCH_OXNAS in Kconfig
- core: add a new manufacture ID and fix a kernel-doc warning
- fsmc: kill pdata support
- lpc32xx_slc: remove unneeded NULL check

----------------------------------------------------------------
Andrey Jr. Melnikov (1):
      mtd: nand: Add Winbond manufacturer id

Boris Brezillon (3):
      mtd: nand: sunxi: Fix the non-polling case in sunxi_nfc_wait_events()
      mtd: nand: sunxi: Stop using polling mode when waiting for long operations
      mtd: nand: sunxi: Improve sunxi_nfc_cmd_ctrl()

Fabio Estevam (1):
      mtd: nand: lpc32xx_slc: Remove unneeded NULL check on 'rc'

Jean Delvare (1):
      mtd: nand: Add OX820 NAND hardware dependency

Linus Walleij (1):
      mtd: nand: fsmc: remove stale non-DT probe path

Mark Marshall (1):
      mtd: nand: ifc: Fix location of eccstat registers for IFC V1.0

Randy Dunlap (1):
      mtd: nand: fix nand.h kernel-doc warnings

Wei Yongjun (1):
      mtd: nand: mediatek: remove redundant dev_err call in mtk_nfc_probe()

 drivers/mtd/nand/Kconfig        |   2 +
 drivers/mtd/nand/fsl_ifc_nand.c |   8 +++-
 drivers/mtd/nand/fsmc_nand.c    | 153 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 drivers/mtd/nand/lpc32xx_slc.c  |   9 +----
 drivers/mtd/nand/mtk_nand.c     |   1 -
 drivers/mtd/nand/nand_ids.c     |   1 +
 drivers/mtd/nand/sunxi_nand.c   |  36 +++++++++++++-----
 include/linux/fsl_ifc.h         |   8 +++-
 include/linux/mtd/fsmc.h        | 156 -----------------------------------------------------------------------------
 include/linux/mtd/nand.h        |   4 +-
 10 files changed, 179 insertions(+), 199 deletions(-)
 delete mode 100644 include/linux/mtd/fsmc.h

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

* Re: [PULL] mtd: nand: Changes for 4.11
  2017-02-07  9:09 [PULL] mtd: nand: Changes for 4.11 Boris Brezillon
@ 2017-02-07  9:46 ` Marek Vasut
  2017-02-08 23:05   ` Brian Norris
  0 siblings, 1 reply; 3+ messages in thread
From: Marek Vasut @ 2017-02-07  9:46 UTC (permalink / raw)
  To: Boris Brezillon, Brian Norris
  Cc: Cyrille Pitchen, Richard Weinberger, David Woodhouse, linux-mtd

On 02/07/2017 10:09 AM, Boris Brezillon wrote:
> Hi Brian,
> 
> Here is a rather small PR for 4.11. No fancy things in this release, and
> not even a single new driver (which is completely my fault since I failed
> to review the Arasan driver in time :-().
> 
> As usual, let me know if I did something wrong.
> 
> Marek, Richard, Cyrille, don't hesitate to point any patches I may have
> missed.

>From my side, the PR looks fine. If I find something missing, I will
yell. Thanks

> Thanks,
> 
> Boris
> 
> The following changes since commit 566cf877a1fcb6d6dc0126b076aad062054c2637:
> 
>   Linux 4.10-rc6 (2017-01-29 14:25:17 -0800)
> 
> are available in the git repository at:
> 
>   git@github.com:linux-nand/linux.git tags/nand/for-4.11
> 
> for you to fetch changes up to a4077ce5871304f8a78f80b74b18b6052a410f1a:
> 
>   mtd: nand: Add Winbond manufacturer id (2017-02-06 11:42:43 +0100)
> 
> ----------------------------------------------------------------
> This pull request contains minor fixes/improvements on existing drivers:
> - sunxi: avoid busy-waiting for NAND events
> - ifc: fix ECC handling on IFC v1.0
> - OX820: add explicit dependency on ARCH_OXNAS in Kconfig
> - core: add a new manufacture ID and fix a kernel-doc warning
> - fsmc: kill pdata support
> - lpc32xx_slc: remove unneeded NULL check
> 
> ----------------------------------------------------------------
> Andrey Jr. Melnikov (1):
>       mtd: nand: Add Winbond manufacturer id
> 
> Boris Brezillon (3):
>       mtd: nand: sunxi: Fix the non-polling case in sunxi_nfc_wait_events()
>       mtd: nand: sunxi: Stop using polling mode when waiting for long operations
>       mtd: nand: sunxi: Improve sunxi_nfc_cmd_ctrl()
> 
> Fabio Estevam (1):
>       mtd: nand: lpc32xx_slc: Remove unneeded NULL check on 'rc'
> 
> Jean Delvare (1):
>       mtd: nand: Add OX820 NAND hardware dependency
> 
> Linus Walleij (1):
>       mtd: nand: fsmc: remove stale non-DT probe path
> 
> Mark Marshall (1):
>       mtd: nand: ifc: Fix location of eccstat registers for IFC V1.0
> 
> Randy Dunlap (1):
>       mtd: nand: fix nand.h kernel-doc warnings
> 
> Wei Yongjun (1):
>       mtd: nand: mediatek: remove redundant dev_err call in mtk_nfc_probe()
> 
>  drivers/mtd/nand/Kconfig        |   2 +
>  drivers/mtd/nand/fsl_ifc_nand.c |   8 +++-
>  drivers/mtd/nand/fsmc_nand.c    | 153 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
>  drivers/mtd/nand/lpc32xx_slc.c  |   9 +----
>  drivers/mtd/nand/mtk_nand.c     |   1 -
>  drivers/mtd/nand/nand_ids.c     |   1 +
>  drivers/mtd/nand/sunxi_nand.c   |  36 +++++++++++++-----
>  include/linux/fsl_ifc.h         |   8 +++-
>  include/linux/mtd/fsmc.h        | 156 -----------------------------------------------------------------------------
>  include/linux/mtd/nand.h        |   4 +-
>  10 files changed, 179 insertions(+), 199 deletions(-)
>  delete mode 100644 include/linux/mtd/fsmc.h
> 


-- 
Best regards,
Marek Vasut

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

* Re: [PULL] mtd: nand: Changes for 4.11
  2017-02-07  9:46 ` Marek Vasut
@ 2017-02-08 23:05   ` Brian Norris
  0 siblings, 0 replies; 3+ messages in thread
From: Brian Norris @ 2017-02-08 23:05 UTC (permalink / raw)
  To: Marek Vasut
  Cc: Boris Brezillon, Cyrille Pitchen, Richard Weinberger,
	David Woodhouse, linux-mtd

On Tue, Feb 07, 2017 at 10:46:21AM +0100, Marek Vasut wrote:
> On 02/07/2017 10:09 AM, Boris Brezillon wrote:
> > Hi Brian,
> > 
> > Here is a rather small PR for 4.11. No fancy things in this release, and
> > not even a single new driver (which is completely my fault since I failed
> > to review the Arasan driver in time :-().
> > 
> > As usual, let me know if I did something wrong.
> > 
> > Marek, Richard, Cyrille, don't hesitate to point any patches I may have
> > missed.
> 
> >From my side, the PR looks fine. If I find something missing, I will
> yell. Thanks
> 
> > Thanks,
> > 
> > Boris
> > 
> > The following changes since commit 566cf877a1fcb6d6dc0126b076aad062054c2637:
> > 
> >   Linux 4.10-rc6 (2017-01-29 14:25:17 -0800)
> > 
> > are available in the git repository at:
> > 
> >   git@github.com:linux-nand/linux.git tags/nand/for-4.11
> > 
> > for you to fetch changes up to a4077ce5871304f8a78f80b74b18b6052a410f1a:
> > 
> >   mtd: nand: Add Winbond manufacturer id (2017-02-06 11:42:43 +0100)
> > 
> > ----------------------------------------------------------------
> > This pull request contains minor fixes/improvements on existing drivers:
> > - sunxi: avoid busy-waiting for NAND events
> > - ifc: fix ECC handling on IFC v1.0
> > - OX820: add explicit dependency on ARCH_OXNAS in Kconfig
> > - core: add a new manufacture ID and fix a kernel-doc warning
> > - fsmc: kill pdata support
> > - lpc32xx_slc: remove unneeded NULL check
> > 
> > ----------------------------------------------------------------

Pulled into l2-mtd.git. Thanks!

There was a trivial conflict in nand.h, in the kerneldoc, due to
recently-applied changes.

Brian

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

end of thread, other threads:[~2017-02-08 23:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-07  9:09 [PULL] mtd: nand: Changes for 4.11 Boris Brezillon
2017-02-07  9:46 ` Marek Vasut
2017-02-08 23:05   ` Brian Norris

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.