All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10] ARM: at91 cleanups for 4.1 #2
@ 2015-03-16 22:44 ` Alexandre Belloni
  0 siblings, 0 replies; 48+ messages in thread
From: Alexandre Belloni @ 2015-03-16 22:44 UTC (permalink / raw)
  To: Nicolas Ferre
  Cc: Lee Jones, Boris Brezillon, Jean-Christophe Plagniol-Villard,
	linux-kernel, Tejun Heo, linux-ide, linux-pcmcia,
	linux-arm-kernel, Alexandre Belloni

Hi,

This patch set finishes the clean up of the mach-at91 directory.

It fixed the remaining two drivers (at91_cf and pata_at91) so that they compile
in a multiplatform configuration.

Then it removes the uneeded headers.


Alexandre Belloni (9):
  ARM: at91/pm: move the standby functions to pm.c
  ARM: at91/pm: move AT91_MEMCTRL_* to pm.h
  ata: at91: use syscon to configure the smc
  ARM: at91: drop sam9_smc.c
  ARM: at91: declare the at91rm9200 memory controller as a syscon
  pcmcia: at91_cf: Use syscon to configure the MC/smc
  ARM: at91/pm: use the atmel-mc syscon defines
  ARM: at91: remove mach/at91_ramc.h and mach/at91rm9200_mc.h
  ARM: at91: remove at91rm9200_sdramc.h

Boris Brezillon (1):
  mfd: syscon: Add Atmel MC (Memory Controller) registers definition

 .../devicetree/bindings/arm/atmel-at91.txt         |   2 +-
 arch/arm/boot/dts/at91rm9200.dtsi                  |   2 +-
 arch/arm/mach-at91/Makefile                        |   5 -
 arch/arm/mach-at91/include/mach/at91_ramc.h        |  32 -----
 arch/arm/mach-at91/include/mach/at91rm9200_mc.h    | 116 -----------------
 arch/arm/mach-at91/include/mach/at91sam9_smc.h     |  98 --------------
 arch/arm/mach-at91/pm.c                            |  91 ++++++++++++-
 arch/arm/mach-at91/pm.h                            | 110 +++-------------
 arch/arm/mach-at91/pm_suspend.S                    |   3 +-
 arch/arm/mach-at91/sam9_smc.c                      | 136 -------------------
 arch/arm/mach-at91/sam9_smc.h                      |  11 --
 drivers/ata/Kconfig                                |   1 -
 drivers/ata/pata_at91.c                            |  92 ++++++++++---
 drivers/pcmcia/Kconfig                             |   1 -
 drivers/pcmcia/at91_cf.c                           |  25 ++--
 include/linux/mfd/syscon/atmel-mc.h                | 144 +++++++++++++++++++++
 include/soc/at91/at91rm9200_sdramc.h               |  63 ---------
 17 files changed, 339 insertions(+), 593 deletions(-)
 delete mode 100644 arch/arm/mach-at91/include/mach/at91_ramc.h
 delete mode 100644 arch/arm/mach-at91/include/mach/at91rm9200_mc.h
 delete mode 100644 arch/arm/mach-at91/include/mach/at91sam9_smc.h
 delete mode 100644 arch/arm/mach-at91/sam9_smc.c
 delete mode 100644 arch/arm/mach-at91/sam9_smc.h
 create mode 100644 include/linux/mfd/syscon/atmel-mc.h
 delete mode 100644 include/soc/at91/at91rm9200_sdramc.h

-- 
2.1.0

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

end of thread, other threads:[~2015-03-23 16:39 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-16 22:44 [PATCH 00/10] ARM: at91 cleanups for 4.1 #2 Alexandre Belloni
2015-03-16 22:44 ` Alexandre Belloni
2015-03-16 22:44 ` [PATCH 01/10] ARM: at91/pm: move the standby functions to pm.c Alexandre Belloni
2015-03-16 22:44   ` Alexandre Belloni
2015-03-23 10:14   ` Nicolas Ferre
2015-03-23 10:14     ` Nicolas Ferre
2015-03-23 10:14     ` Nicolas Ferre
2015-03-16 22:44 ` [PATCH 02/10] ARM: at91/pm: move AT91_MEMCTRL_* to pm.h Alexandre Belloni
2015-03-16 22:44   ` Alexandre Belloni
2015-03-16 22:44   ` Alexandre Belloni
2015-03-23 10:15   ` Nicolas Ferre
2015-03-23 10:15     ` Nicolas Ferre
2015-03-23 10:15     ` Nicolas Ferre
2015-03-16 22:44 ` [PATCH 03/10] ata: at91: use syscon to configure the smc Alexandre Belloni
2015-03-16 22:44   ` Alexandre Belloni
2015-03-16 22:44   ` Alexandre Belloni
2015-03-23 10:11   ` Nicolas Ferre
2015-03-23 10:11     ` Nicolas Ferre
2015-03-23 10:11     ` Nicolas Ferre
2015-03-23 16:38     ` Alexandre Belloni
2015-03-23 16:38       ` Alexandre Belloni
2015-03-16 22:44 ` [PATCH 04/10] ARM: at91: drop sam9_smc.c Alexandre Belloni
2015-03-16 22:44   ` Alexandre Belloni
2015-03-16 22:44 ` [PATCH 05/10] mfd: syscon: Add Atmel MC (Memory Controller) registers definition Alexandre Belloni
2015-03-16 22:44   ` Alexandre Belloni
2015-03-23  9:57   ` Nicolas Ferre
2015-03-23  9:57     ` Nicolas Ferre
2015-03-23  9:57     ` Nicolas Ferre
2015-03-23 14:47     ` Lee Jones
2015-03-23 14:47       ` Lee Jones
2015-03-23 12:31   ` Lee Jones
2015-03-23 12:31     ` Lee Jones
2015-03-16 22:44 ` [PATCH 06/10] ARM: at91: declare the at91rm9200 memory controller as a syscon Alexandre Belloni
2015-03-16 22:44   ` Alexandre Belloni
2015-03-16 22:44 ` [PATCH 07/10] pcmcia: at91_cf: Use syscon to configure the MC/smc Alexandre Belloni
2015-03-16 22:44   ` Alexandre Belloni
2015-03-16 22:44 ` [PATCH 08/10] ARM: at91/pm: use the atmel-mc syscon defines Alexandre Belloni
2015-03-16 22:44   ` Alexandre Belloni
2015-03-16 22:44 ` [PATCH 09/10] ARM: at91: remove mach/at91_ramc.h and mach/at91rm9200_mc.h Alexandre Belloni
2015-03-16 22:44   ` Alexandre Belloni
2015-03-23 10:01   ` Nicolas Ferre
2015-03-23 10:01     ` Nicolas Ferre
2015-03-23 10:01     ` Nicolas Ferre
2015-03-16 22:44 ` [PATCH 10/10] ARM: at91: remove at91rm9200_sdramc.h Alexandre Belloni
2015-03-16 22:44   ` Alexandre Belloni
2015-03-23 10:14 ` [PATCH 00/10] ARM: at91 cleanups for 4.1 #2 Nicolas Ferre
2015-03-23 10:14   ` Nicolas Ferre
2015-03-23 10:14   ` Nicolas Ferre

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.