linux-mtd.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PULL v2] mtd: nand: Fixes for 4.9-rc3
@ 2016-10-28  8:26 Boris Brezillon
  2016-10-28 20:25 ` Marek Vasut
  0 siblings, 1 reply; 3+ messages in thread
From: Boris Brezillon @ 2016-10-28  8:26 UTC (permalink / raw)
  To: Brian Norris, Richard Weinberger
  Cc: linux-mtd@lists.infradead.org, Cyrille Pitchen, Marek Vasut

Hi Brian,

Here is the PR I was mentioning yesterday.
As usual, let me know if you find something weird in this PR, and I'll
fix it.

Thanks,

Boris

The following changes since commit 07d9a380680d1c0eb51ef87ff2eab5c994949e69:

  Linux 4.9-rc2 (2016-10-23 17:10:14 -0700)

are available in the git repository at:

  git@github.com:linux-nand/linux.git tags/nand/fixes-for-4.9-rc3

for you to fetch changes up to 8ff0513bdcdd71e84aa561cce216675d43fb41b8:

  mtd: mtk: avoid warning in mtk_ecc_encode (2016-10-28 10:21:23 +0200)

----------------------------------------------------------------
Three simple fixes:

- the first one is fixing a non-critical bug in the gpmi driver
- the second one is fixing a bug in the 'automatic NAND timings
  selection' feature introduced in 4.9-rc1
- the last one is fixing a false positive uninitialized-var warning

----------------------------------------------------------------
Arnd Bergmann (1):
      mtd: mtk: avoid warning in mtk_ecc_encode

Boris Brezillon (1):
      mtd: nand: Fix data interface configuration logic

Fabio Estevam (1):
      mtd: nand: gpmi: disable the clocks on errors

 drivers/mtd/nand/gpmi-nand/gpmi-lib.c |  6 ++++--
 drivers/mtd/nand/mtk_ecc.c            | 19 +++++++++----------
 drivers/mtd/nand/nand_base.c          | 60 ++++++++++++++++++++++++++++++++++++++++++------------------
 include/linux/mtd/nand.h              |  2 +-
 4 files changed, 56 insertions(+), 31 deletions(-)

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

* Re: [PULL v2] mtd: nand: Fixes for 4.9-rc3
  2016-10-28  8:26 [PULL v2] mtd: nand: Fixes for 4.9-rc3 Boris Brezillon
@ 2016-10-28 20:25 ` Marek Vasut
  2016-10-29  2:50   ` Brian Norris
  0 siblings, 1 reply; 3+ messages in thread
From: Marek Vasut @ 2016-10-28 20:25 UTC (permalink / raw)
  To: Boris Brezillon, Brian Norris, Richard Weinberger
  Cc: linux-mtd@lists.infradead.org, Cyrille Pitchen

On 10/28/2016 10:26 AM, Boris Brezillon wrote:
> Hi Brian,

Hi,

> Here is the PR I was mentioning yesterday.
> As usual, let me know if you find something weird in this PR, and I'll
> fix it.
> 
> Thanks,
> 
> Boris
> 
> The following changes since commit 07d9a380680d1c0eb51ef87ff2eab5c994949e69:
> 
>   Linux 4.9-rc2 (2016-10-23 17:10:14 -0700)
> 
> are available in the git repository at:
> 
>   git@github.com:linux-nand/linux.git tags/nand/fixes-for-4.9-rc3
> 
> for you to fetch changes up to 8ff0513bdcdd71e84aa561cce216675d43fb41b8:
> 
>   mtd: mtk: avoid warning in mtk_ecc_encode (2016-10-28 10:21:23 +0200)
> 
> ----------------------------------------------------------------
> Three simple fixes:
> 
> - the first one is fixing a non-critical bug in the gpmi driver
> - the second one is fixing a bug in the 'automatic NAND timings
>   selection' feature introduced in 4.9-rc1
> - the last one is fixing a false positive uninitialized-var warning
> 
> ----------------------------------------------------------------
> Arnd Bergmann (1):
>       mtd: mtk: avoid warning in mtk_ecc_encode
> 
> Boris Brezillon (1):
>       mtd: nand: Fix data interface configuration logic
> 
> Fabio Estevam (1):
>       mtd: nand: gpmi: disable the clocks on errors
> 
>  drivers/mtd/nand/gpmi-nand/gpmi-lib.c |  6 ++++--
>  drivers/mtd/nand/mtk_ecc.c            | 19 +++++++++----------
>  drivers/mtd/nand/nand_base.c          | 60 ++++++++++++++++++++++++++++++++++++++++++------------------
>  include/linux/mtd/nand.h              |  2 +-
>  4 files changed, 56 insertions(+), 31 deletions(-)
> 

I saw all those patches, so:

Acked-by: Marek Vasut <marex@denx.de>

-- 
Best regards,
Marek Vasut

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

* Re: [PULL v2] mtd: nand: Fixes for 4.9-rc3
  2016-10-28 20:25 ` Marek Vasut
@ 2016-10-29  2:50   ` Brian Norris
  0 siblings, 0 replies; 3+ messages in thread
From: Brian Norris @ 2016-10-29  2:50 UTC (permalink / raw)
  To: Marek Vasut
  Cc: Boris Brezillon, Richard Weinberger,
	linux-mtd@lists.infradead.org, Cyrille Pitchen

Hi Boris and Marek,

On Fri, Oct 28, 2016 at 10:25:34PM +0200, Marek Vasut wrote:
> On 10/28/2016 10:26 AM, Boris Brezillon wrote:
> > Here is the PR I was mentioning yesterday.
> > As usual, let me know if you find something weird in this PR, and I'll
> > fix it.
> > 
> > Thanks,
> > 
> > Boris
> > 
> > The following changes since commit 07d9a380680d1c0eb51ef87ff2eab5c994949e69:
> > 
> >   Linux 4.9-rc2 (2016-10-23 17:10:14 -0700)
> > 
> > are available in the git repository at:
> > 
> >   git@github.com:linux-nand/linux.git tags/nand/fixes-for-4.9-rc3
> > 
> > for you to fetch changes up to 8ff0513bdcdd71e84aa561cce216675d43fb41b8:
> > 
> >   mtd: mtk: avoid warning in mtk_ecc_encode (2016-10-28 10:21:23 +0200)
> > 
> > ----------------------------------------------------------------
> > Three simple fixes:
> > 
> > - the first one is fixing a non-critical bug in the gpmi driver
> > - the second one is fixing a bug in the 'automatic NAND timings
> >   selection' feature introduced in 4.9-rc1
> > - the last one is fixing a false positive uninitialized-var warning
> > 
> > ----------------------------------------------------------------
> > Arnd Bergmann (1):
> >       mtd: mtk: avoid warning in mtk_ecc_encode
> > 
> > Boris Brezillon (1):
> >       mtd: nand: Fix data interface configuration logic
> > 
> > Fabio Estevam (1):
> >       mtd: nand: gpmi: disable the clocks on errors
> > 
> >  drivers/mtd/nand/gpmi-nand/gpmi-lib.c |  6 ++++--
> >  drivers/mtd/nand/mtk_ecc.c            | 19 +++++++++----------
> >  drivers/mtd/nand/nand_base.c          | 60 ++++++++++++++++++++++++++++++++++++++++++------------------
> >  include/linux/mtd/nand.h              |  2 +-
> >  4 files changed, 56 insertions(+), 31 deletions(-)

Looks good, thanks.

> I saw all those patches, so:
> 
> Acked-by: Marek Vasut <marex@denx.de>

Thanks!

Pulled into linux-mtd.git.

Brian

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

end of thread, other threads:[~2016-10-29  2:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-28  8:26 [PULL v2] mtd: nand: Fixes for 4.9-rc3 Boris Brezillon
2016-10-28 20:25 ` Marek Vasut
2016-10-29  2:50   ` Brian Norris

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