All of lore.kernel.org
 help / color / mirror / Atom feed
From: Miquel Raynal <miquel.raynal@bootlin.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-mtd@lists.infradead.org,
	Richard Weinberger <richard@nod.at>,
	Tudor Ambarus <Tudor.Ambarus@microchip.com>,
	Vignesh Raghavendra <vigneshr@ti.com>,
	Frieder Schrempf <frieder.schrempf@kontron.de>,
	Michael Walle <michael@walle.cc>, Pratyush Yadav <p.yadav@ti.com>,
	linux-kernel@vger.kernel.org
Subject: [GIT PULL] mtd: Fixes for v5.17-rc5
Date: Fri, 18 Feb 2022 15:36:17 +0100	[thread overview]
Message-ID: <20220218153617.016a905a@xps13> (raw)

Hello Linus,

This is a fixes MTD PR for the next -rc.

Thanks,
Miquèl

The following changes since commit e783362eb54cd99b2cac8b3a9aeac942e6f6ac07:

  Linux 5.17-rc1 (2022-01-23 10:12:53 +0200)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/mtd/fixes-for-5.17-rc5

for you to fetch changes up to 36415a7964711822e63695ea67fede63979054d9:

  mtd: rawnand: brcmnand: Fixed incorrect sub-page ECC status (2022-01-31 17:08:56 +0100)

----------------------------------------------------------------
MTD changes:
* Qcom:
  - Don't print error message on -EPROBE_DEFER
  - Fix kernel panic on skipped partition
  - Fix missing free for pparts in cleanup
* phram: Prevent divide by zero bug in phram_setup()

Raw NAND controller changes:
* ingenic: Fix missing put_device in ingenic_ecc_get
* qcom: Fix clock sequencing in qcom_nandc_probe()
* omap2: Prevent invalid configuration and build error
* gpmi: Don't leak PM reference in error path
* brcmnand: Fix incorrect sub-page ECC status

----------------------------------------------------------------
Ansuel Smith (2):
      mtd: parsers: qcom: Fix kernel panic on skipped partition
      mtd: parsers: qcom: Fix missing free for pparts in cleanup

Bryan O'Donoghue (2):
      mtd: rawnand: qcom: Fix clock sequencing in qcom_nandc_probe()
      mtd: parsers: qcom: Don't print error message on -EPROBE_DEFER

Christian Eggers (1):
      mtd: rawnand: gpmi: don't leak PM reference in error path

Dan Carpenter (1):
      mtd: phram: Prevent divide by zero bug in phram_setup()

Miaoqian Lin (1):
      mtd: rawnand: ingenic: Fix missing put_device in ingenic_ecc_get

Roger Quadros (1):
      mtd: rawnand: omap2: Prevent invalid configuration and build error

david regan (1):
      mtd: rawnand: brcmnand: Fixed incorrect sub-page ECC status

 drivers/mtd/devices/phram.c                | 12 ++++++++----
 drivers/mtd/nand/raw/Kconfig               |  3 ++-
 drivers/mtd/nand/raw/brcmnand/brcmnand.c   |  2 +-
 drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c |  3 ++-
 drivers/mtd/nand/raw/ingenic/ingenic_ecc.c |  7 ++++++-
 drivers/mtd/nand/raw/qcom_nandc.c          | 14 ++++++--------
 drivers/mtd/parsers/qcomsmempart.c         | 36 +++++++++++++++++++++++-------------
 7 files changed, 48 insertions(+), 29 deletions(-)

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

WARNING: multiple messages have this Message-ID (diff)
From: Miquel Raynal <miquel.raynal@bootlin.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-mtd@lists.infradead.org,
	Richard Weinberger <richard@nod.at>,
	Tudor Ambarus <Tudor.Ambarus@microchip.com>,
	Vignesh Raghavendra <vigneshr@ti.com>,
	Frieder Schrempf <frieder.schrempf@kontron.de>,
	Michael Walle <michael@walle.cc>, Pratyush Yadav <p.yadav@ti.com>,
	linux-kernel@vger.kernel.org
Subject: [GIT PULL] mtd: Fixes for v5.17-rc5
Date: Fri, 18 Feb 2022 15:36:17 +0100	[thread overview]
Message-ID: <20220218153617.016a905a@xps13> (raw)

Hello Linus,

This is a fixes MTD PR for the next -rc.

Thanks,
Miquèl

The following changes since commit e783362eb54cd99b2cac8b3a9aeac942e6f6ac07:

  Linux 5.17-rc1 (2022-01-23 10:12:53 +0200)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/mtd/fixes-for-5.17-rc5

for you to fetch changes up to 36415a7964711822e63695ea67fede63979054d9:

  mtd: rawnand: brcmnand: Fixed incorrect sub-page ECC status (2022-01-31 17:08:56 +0100)

----------------------------------------------------------------
MTD changes:
* Qcom:
  - Don't print error message on -EPROBE_DEFER
  - Fix kernel panic on skipped partition
  - Fix missing free for pparts in cleanup
* phram: Prevent divide by zero bug in phram_setup()

Raw NAND controller changes:
* ingenic: Fix missing put_device in ingenic_ecc_get
* qcom: Fix clock sequencing in qcom_nandc_probe()
* omap2: Prevent invalid configuration and build error
* gpmi: Don't leak PM reference in error path
* brcmnand: Fix incorrect sub-page ECC status

----------------------------------------------------------------
Ansuel Smith (2):
      mtd: parsers: qcom: Fix kernel panic on skipped partition
      mtd: parsers: qcom: Fix missing free for pparts in cleanup

Bryan O'Donoghue (2):
      mtd: rawnand: qcom: Fix clock sequencing in qcom_nandc_probe()
      mtd: parsers: qcom: Don't print error message on -EPROBE_DEFER

Christian Eggers (1):
      mtd: rawnand: gpmi: don't leak PM reference in error path

Dan Carpenter (1):
      mtd: phram: Prevent divide by zero bug in phram_setup()

Miaoqian Lin (1):
      mtd: rawnand: ingenic: Fix missing put_device in ingenic_ecc_get

Roger Quadros (1):
      mtd: rawnand: omap2: Prevent invalid configuration and build error

david regan (1):
      mtd: rawnand: brcmnand: Fixed incorrect sub-page ECC status

 drivers/mtd/devices/phram.c                | 12 ++++++++----
 drivers/mtd/nand/raw/Kconfig               |  3 ++-
 drivers/mtd/nand/raw/brcmnand/brcmnand.c   |  2 +-
 drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c |  3 ++-
 drivers/mtd/nand/raw/ingenic/ingenic_ecc.c |  7 ++++++-
 drivers/mtd/nand/raw/qcom_nandc.c          | 14 ++++++--------
 drivers/mtd/parsers/qcomsmempart.c         | 36 +++++++++++++++++++++++-------------
 7 files changed, 48 insertions(+), 29 deletions(-)

             reply	other threads:[~2022-02-18 14:36 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-18 14:36 Miquel Raynal [this message]
2022-02-18 14:36 ` [GIT PULL] mtd: Fixes for v5.17-rc5 Miquel Raynal
2022-02-18 17:40 ` pr-tracker-bot
2022-02-18 17:40   ` pr-tracker-bot
2022-03-06 20:08 ` Linus Torvalds
2022-03-06 20:08   ` Linus Torvalds
2022-03-07 16:34   ` Miquel Raynal
2022-03-07 16:34     ` Miquel Raynal

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220218153617.016a905a@xps13 \
    --to=miquel.raynal@bootlin.com \
    --cc=Tudor.Ambarus@microchip.com \
    --cc=frieder.schrempf@kontron.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=michael@walle.cc \
    --cc=p.yadav@ti.com \
    --cc=richard@nod.at \
    --cc=torvalds@linux-foundation.org \
    --cc=vigneshr@ti.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.