All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] mtd: get rid of of_mtd.{c,h} and of_get_nand_xx()
@ 2016-04-01 12:54 ` Boris Brezillon
  0 siblings, 0 replies; 88+ messages in thread
From: Boris Brezillon @ 2016-04-01 12:54 UTC (permalink / raw)
  To: Roger Quadros, Tony Lindgren, Wenyou Yang, Josh Wu,
	Boris Brezillon, Richard Weinberger, linux-mtd, David Woodhouse,
	Brian Norris, Kamal Dasu, Han Xu, Ezequiel Garcia, Stefan Agner
  Cc: linux-omap, Nicolas Ferre, Jean-Christophe Plagniol-Villard,
	Alexandre Belloni, Thomas Petazzoni, Gregory CLEMENT,
	Jason Cooper, Sebastian Hesselbarth, Andrew Lunn, Daniel Mack,
	Haojian Zhuang, Robert Jarzmik, bcm-kernel-feedback-list,
	linux-arm-kernel, linux-kernel, Maxime Ripard, Chen-Yu Tsai,
	linux-sunxi, Zhou Wang, Alex Smith, Harvey Hunt

Hello,

of_mtd.{h,c} are providing the of_get_nand_xxx() helpers to help NAND
controller drivers parse some generic NAND DT properties.
An infrastructure has recently been added to NAND core to automatically
parse those properties when nand_scan_ident() is called, thus removing
the need for NAND controller drivers to manually parse them.

This series modifies drivers still making use of those helpers to rely
on NAND core initialization, and get rid of the of_mtd.{c,h} files by
moving the of_get_nand_xx() helpers into nand_base.c.

Best Regards,

Boris

Boris Brezillon (12):
  mtd: nand: remove unneeded of_mtd.h inclusions
  mtd: nand: atmel: rely on generic DT parsing done in nand_scan_ident()
  mtd: nand: omap2: rely on generic DT parsing done in nand_scan_ident()
  mtd: nand: brcm: rely on generic DT parsing done in nand_scan_ident()
  mtd: nand: davinci: rely on generic DT parsing done in
    nand_scan_ident()
  mtd: nand: gpmi: rely on generic DT parsing done in nand_scan_ident()
  mtd: nand: hisi504: rely on generic DT parsing done in
    nand_scan_ident()
  mtd: nand: lpc32xx: rely on generic DT parsing done in
    nand_scan_ident()
  mtd: nand: mxc: rely on generic DT parsing done in nand_scan_ident()
  mtd: nand: pxa3xx: rely on generic DT parsing done in
    nand_scan_ident()
  mtd: nand: sh_flctl: rely on generic DT parsing done in
    nand_scan_ident()
  mtd: nand: move of_get_nand_xxx() helpers into nand_base.c

 drivers/memory/omap-gpmc.c             |   7 --
 drivers/mtd/nand/atmel_nand.c          | 133 +++++++++++++++-------------
 drivers/mtd/nand/brcmnand/brcmnand.c   |   5 +-
 drivers/mtd/nand/davinci_nand.c        |  85 +++++++++---------
 drivers/mtd/nand/gpmi-nand/gpmi-nand.c |  21 +++--
 drivers/mtd/nand/hisi504_nand.c        |  14 +--
 drivers/mtd/nand/jz4780_nand.c         |   1 -
 drivers/mtd/nand/lpc32xx_mlc.c         |   1 -
 drivers/mtd/nand/lpc32xx_slc.c         |  24 ++---
 drivers/mtd/nand/mxc_nand.c            |  50 +++++------
 drivers/mtd/nand/nand_base.c           |  99 ++++++++++++++++++++-
 drivers/mtd/nand/omap2.c               |   9 +-
 drivers/mtd/nand/pxa3xx_nand.c         |  28 +++---
 drivers/mtd/nand/qcom_nandc.c          |   1 -
 drivers/mtd/nand/sh_flctl.c            |  31 +++----
 drivers/mtd/nand/sunxi_nand.c          |   1 -
 drivers/mtd/nand/vf610_nfc.c           |   1 -
 drivers/of/Makefile                    |   1 -
 drivers/of/of_mtd.c                    | 155 ---------------------------------
 include/linux/of_mtd.h                 |  56 ------------
 20 files changed, 291 insertions(+), 432 deletions(-)
 delete mode 100644 drivers/of/of_mtd.c
 delete mode 100644 include/linux/of_mtd.h

-- 
2.5.0

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

end of thread, other threads:[~2016-04-22  9:14 UTC | newest]

Thread overview: 88+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-01 12:54 [PATCH 00/12] mtd: get rid of of_mtd.{c,h} and of_get_nand_xx() Boris Brezillon
2016-04-01 12:54 ` Boris Brezillon
2016-04-01 12:54 ` Boris Brezillon
2016-04-01 12:54 ` [PATCH 01/12] mtd: nand: remove unneeded of_mtd.h inclusions Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 13:09   ` Harvey Hunt
2016-04-01 13:09     ` Harvey Hunt
2016-04-01 13:09     ` Harvey Hunt
2016-04-12 22:22   ` Boris Brezillon
2016-04-12 22:22     ` Boris Brezillon
2016-04-12 22:22     ` Boris Brezillon
2016-04-01 12:54 ` [PATCH 02/12] mtd: nand: atmel: rely on generic DT parsing done in nand_scan_ident() Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-13 12:31   ` Boris Brezillon
2016-04-13 12:31     ` Boris Brezillon
2016-04-13 12:31     ` Boris Brezillon
2016-04-13 12:55   ` Nicolas Ferre
2016-04-13 12:55     ` Nicolas Ferre
2016-04-13 12:55     ` Nicolas Ferre
2016-04-13 13:51   ` Boris Brezillon
2016-04-13 13:51     ` Boris Brezillon
2016-04-13 13:51     ` Boris Brezillon
2016-04-01 12:54 ` [PATCH 03/12] mtd: nand: omap2: " Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-04  7:23   ` Roger Quadros
2016-04-04  7:23     ` Roger Quadros
2016-04-04  7:23     ` Roger Quadros
2016-04-12 22:22   ` Boris Brezillon
2016-04-12 22:22     ` Boris Brezillon
2016-04-12 22:22     ` Boris Brezillon
2016-04-01 12:54 ` [PATCH 04/12] mtd: nand: brcm: " Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-12 22:31   ` Brian Norris
2016-04-12 22:31     ` Brian Norris
2016-04-12 22:31     ` Brian Norris
2016-04-13  7:42     ` Boris Brezillon
2016-04-13  7:42       ` Boris Brezillon
2016-04-13  7:42       ` Boris Brezillon
2016-04-01 12:54 ` [PATCH 05/12] mtd: nand: davinci: " Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54 ` [PATCH 06/12] mtd: nand: gpmi: " Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-16  9:07   ` Boris Brezillon
2016-04-16  9:07     ` Boris Brezillon
2016-04-16  9:07     ` Boris Brezillon
2016-04-16 18:46     ` Han Xu
2016-04-01 12:54 ` [PATCH 07/12] mtd: nand: hisi504: " Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54 ` [PATCH 08/12] mtd: nand: lpc32xx: " Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54 ` [PATCH 09/12] mtd: nand: mxc: " Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54 ` [PATCH 10/12] mtd: nand: pxa3xx: " Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-13 14:48   ` Ezequiel Garcia
2016-04-13 14:48     ` Ezequiel Garcia
2016-04-13 14:48     ` Ezequiel Garcia
2016-04-13 14:53     ` Boris Brezillon
2016-04-13 14:53       ` Boris Brezillon
2016-04-13 14:53       ` Boris Brezillon
2016-04-01 12:54 ` [PATCH 11/12] mtd: nand: sh_flctl: " Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54 ` [PATCH 12/12] mtd: nand: move of_get_nand_xxx() helpers into nand_base.c Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 12:54   ` Boris Brezillon
2016-04-01 14:13   ` kbuild test robot
2016-04-01 14:13     ` kbuild test robot
2016-04-01 14:13     ` kbuild test robot
2016-04-01 15:34     ` Boris Brezillon
2016-04-01 15:34       ` Boris Brezillon
2016-04-01 15:34       ` Boris Brezillon
2016-04-06 23:33 ` [PATCH 00/12] mtd: get rid of of_mtd.{c,h} and of_get_nand_xx() Franklin S Cooper Jr.
2016-04-06 23:33   ` Franklin S Cooper Jr.
2016-04-06 23:33   ` Franklin S Cooper Jr.
2016-04-22  9:14 ` Boris Brezillon
2016-04-22  9:14   ` Boris Brezillon
2016-04-22  9:14   ` 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.