Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1594040 > unrolled thread

[PATCH v2 0/2] mtd: Add support for reading MTD devices via the nvmem API

Started byAlban <albeu@free.fr>
First post2017-03-07 10:30 +0100
Last post2017-03-07 10:30 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH v2 0/2] mtd: Add support for reading MTD devices via the nvmem API Alban <albeu@free.fr> - 2017-03-07 10:30 +0100

#1594040 — [PATCH v2 0/2] mtd: Add support for reading MTD devices via the nvmem API

FromAlban <albeu@free.fr>
Date2017-03-07 10:30 +0100
Subject[PATCH v2 0/2] mtd: Add support for reading MTD devices via the nvmem API
Message-ID<tiiFk-4KU-3@gated-at.bofh.it>
Hi all,

First thanks to everybody for the feedback on the first series, I implemented
most of the suggestions in this new version. The biggest change is to
directly integrate in the MTD core instead of using notifiers which allow us
to simplify the code quiet a bit.

During the discussion 2 points showed up, reworking the NVMEM binding and
improving the MTD notifiers. Both are good points but not relevant for
this series, so I left that out for another time.

The NVMEM device ID bug fix found in the first series has already been
applied so I didn't include it again.

Alban (2):
  doc: bindings: Add bindings documentation for mtd nvmem
  mtd: Add support for reading MTD devices via the nvmem API

 .../devicetree/bindings/nvmem/mtd-nvmem.txt        | 33 ++++++++++
 drivers/mtd/Kconfig                                |  9 +++
 drivers/mtd/Makefile                               |  1 +
 drivers/mtd/mtdcore.c                              | 13 ++++
 drivers/mtd/mtdnvmem.c                             | 72 ++++++++++++++++++++++
 drivers/mtd/mtdnvmem.h                             | 25 ++++++++
 include/linux/mtd/mtd.h                            |  4 ++
 7 files changed, 157 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/nvmem/mtd-nvmem.txt
 create mode 100644 drivers/mtd/mtdnvmem.c
 create mode 100644 drivers/mtd/mtdnvmem.h

-- 
2.7.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web