All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] mmc: use sdhci_pltfm_init for private allocation and clean up
@ 2016-01-05 10:51 ` Jisheng Zhang
  0 siblings, 0 replies; 45+ messages in thread
From: Jisheng Zhang @ 2016-01-05 10:51 UTC (permalink / raw)
  To: ulf.hansson-QSEj5FYQhm4dnm+yROfE0A,
	swarren-3lzwWm7+Weoh9ZMKESR00Q, lee-DgEjT+Ai2ygdnm+yROfE0A,
	eric-WhKQ6XTQaPysTnJN9+BGXg, michal.simek-gjFFaj9aHVfQT0dZR+AlfA,
	soren.brinkmann-gjFFaj9aHVfQT0dZR+AlfA,
	ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w,
	srinivas.kandagatla-Re5JQEeQqe8AvxtiuMwx3w,
	maxime.coquelin-qxv4g6HH51o, patrice.chotard-qxv4g6HH51o,
	thierry.reding-Re5JQEeQqe8AvxtiuMwx3w,
	sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-mmc-u79uwXL29TY76Z2rM5mHXA,
	linux-rpi-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	kernel-F5mvAk5X5gdBDgjK7y7TUQ,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA, Jisheng Zhang

These patches are to complete the TODO in Commit 0e748234293f ("mmc:
sdhci: Add size for caller in init+register"), I.E:

- todo: migrate clients to using allocation this way
- todo: remove priv variable once migration is complete

Jisheng Zhang (11):
  mmc: sdhci-bcm2835: use sdhci_pltfm_init for private allocation
  mmc: sdhci-esdhc-imx: use sdhci_pltfm_init for private allocation
  mmc: sdhci-msm: use sdhci_pltfm_init for private allocation
  mmc: sdhci-of-arasan: use sdhci_pltfm_init for private allocation
  mmc: sdhci-of-at91: use sdhci_pltfm_init for private allocation
  mmc: sdhci-of-esdhc: use sdhci_pltfm_init for private allocation
  mmc: sdhci-pxav3: use sdhci_pltfm_init for private allocation
  mmc: sdhci-st: use sdhci_pltfm_init for private allocation
  mmc: sdhci-tegra: use sdhci_pltfm_init for private allocation
  mmc: sdhci-pxav2: remove unnecessary assignment of pltfm_host->priv
  mmc: sdhci-pltfm: remove priv variable from sdhci_pltfm_host

 drivers/mmc/host/sdhci-bcm2835.c   | 14 +++-----------
 drivers/mmc/host/sdhci-esdhc-imx.c | 38 +++++++++++++++++---------------------
 drivers/mmc/host/sdhci-msm.c       | 13 +++++--------
 drivers/mmc/host/sdhci-of-arasan.c | 25 ++++++++++---------------
 drivers/mmc/host/sdhci-of-at91.c   | 21 ++++++++-------------
 drivers/mmc/host/sdhci-of-esdhc.c  | 17 ++++++++---------
 drivers/mmc/host/sdhci-pltfm.h     |  1 -
 drivers/mmc/host/sdhci-pxav2.c     |  1 -
 drivers/mmc/host/sdhci-pxav3.c     | 21 +++++++++------------
 drivers/mmc/host/sdhci-st.c        | 36 ++++++++++++++++++------------------
 drivers/mmc/host/sdhci-tegra.c     | 19 ++++++-------------
 11 files changed, 84 insertions(+), 122 deletions(-)

-- 
2.6.4

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

end of thread, other threads:[~2016-01-06  2:40 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-05 10:51 [PATCH 00/11] mmc: use sdhci_pltfm_init for private allocation and clean up Jisheng Zhang
2016-01-05 10:51 ` Jisheng Zhang
2016-01-05 10:51 ` Jisheng Zhang
2016-01-05 10:51 ` [PATCH 01/11] mmc: sdhci-bcm2835: use sdhci_pltfm_init for private allocation Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51 ` [PATCH 02/11] mmc: sdhci-esdhc-imx: " Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51 ` [PATCH 03/11] mmc: sdhci-msm: " Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 12:47   ` kbuild test robot
2016-01-05 12:47     ` kbuild test robot
2016-01-05 12:47     ` kbuild test robot
2016-01-06  2:36     ` Jisheng Zhang
2016-01-06  2:36       ` Jisheng Zhang
2016-01-06  2:36       ` Jisheng Zhang
2016-01-05 10:51 ` [PATCH 04/11] mmc: sdhci-of-arasan: " Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51 ` [PATCH 05/11] mmc: sdhci-of-at91: " Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51 ` [PATCH 06/11] mmc: sdhci-of-esdhc: " Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51 ` [PATCH 07/11] mmc: sdhci-pxav3: " Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51 ` [PATCH 08/11] mmc: sdhci-st: " Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51 ` [PATCH 11/11] mmc: sdhci-pltfm: remove priv variable from sdhci_pltfm_host Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
2016-01-05 10:51   ` Jisheng Zhang
     [not found] ` <1451991099-4946-1-git-send-email-jszhang-eYqpPyKDWXRBDgjK7y7TUQ@public.gmane.org>
2016-01-05 10:51   ` [PATCH 09/11] mmc: sdhci-tegra: use sdhci_pltfm_init for private allocation Jisheng Zhang
2016-01-05 10:51     ` Jisheng Zhang
2016-01-05 10:51     ` Jisheng Zhang
2016-01-05 10:51   ` [PATCH 10/11] mmc: sdhci-pxav2: remove unnecessary assignment of pltfm_host->priv Jisheng Zhang
2016-01-05 10:51     ` Jisheng Zhang
2016-01-05 10:51     ` Jisheng Zhang
2016-01-05 11:45   ` [PATCH 00/11] mmc: use sdhci_pltfm_init for private allocation and clean up Arnd Bergmann
2016-01-05 11:45     ` Arnd Bergmann
2016-01-05 11:45     ` Arnd Bergmann

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.