mbox

[GIT,PULL] at91: cleanup for 3.19 #5

Message ID 1417715520-30412-1-git-send-email-nicolas.ferre@atmel.com
State New
Headers show

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git tags/at91-cleanup5

Message

Nicolas Ferre Dec. 4, 2014, 5:52 p.m. UTC
Arnd, Olof, Kevin,

This is the last "cleanup" pull-request for 3.19 on my side. Most of the work
was done by Arnd actually ;-)
This simplifies even more the mach-at91 directory and remove a bunch of dead
code. Arnd also wrote some more cleanup patches that I will keep for 3.20 as
they modify files in a larger extent.

Thanks, best regards,

The following changes since commit 4a109c50d1958a2783df01980b55508fe47bb79c:

  ARM: at91: remove unused IRQ function declarations (2014-11-27 16:33:06 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git tags/at91-cleanup5

for you to fetch changes up to ba62a8593d15f3f353acdc8ab32c18dd40a275bb:

  ARM: at91: remove unused board.h file (2014-12-03 14:16:07 +0100)

----------------------------------------------------------------
Fifth batch of cleanup/SoC for 3.19:
- removal of now dead code and AT91-specific driver
- removal of !DT initialization in some core AT91 drivers
- simplification of Kconfig DT board file selection: now automatic

----------------------------------------------------------------
Arnd Bergmann (6):
      ARM: at91/Kconfig: select board files automatically
      ARM: at91: cleanup initilisation code by removing dead code
      ARM: at91: remove old AT91-specific drivers
      ARM: at91: at91rm9200 ST initialization is now DT only
      ARM: at91/clocksource: remove !DT PIT initializations
      ARM: at91: remove unused board.h file

Nicolas Ferre (1):
      ARM: at91: remove unneeded header files

 arch/arm/mach-at91/Kconfig                 |  14 +-
 arch/arm/mach-at91/Makefile                |   5 +-
 arch/arm/mach-at91/at91_tc.h               | 146 -----
 arch/arm/mach-at91/at91rm9200_time.c       |  23 -
 arch/arm/mach-at91/board-dt-rm9200.c       |   2 -
 arch/arm/mach-at91/board-dt-sam9.c         |   1 -
 arch/arm/mach-at91/board.h                 | 123 ----
 arch/arm/mach-at91/generic.h               |  33 -
 arch/arm/mach-at91/gpio.c                  | 982 -----------------------------
 arch/arm/mach-at91/gpio.h                  | 214 -------
 arch/arm/mach-at91/gsia18s.h               |  33 -
 arch/arm/mach-at91/include/mach/hardware.h |   5 -
 arch/arm/mach-at91/leds.c                  |  56 --
 arch/arm/mach-at91/pm.c                    |  11 +-
 arch/arm/mach-at91/setup.c                 |  54 --
 arch/arm/mach-at91/soc.h                   |   6 -
 drivers/clocksource/timer-atmel-pit.c      |  32 -
 17 files changed, 5 insertions(+), 1735 deletions(-)
 delete mode 100644 arch/arm/mach-at91/at91_tc.h
 delete mode 100644 arch/arm/mach-at91/board.h
 delete mode 100644 arch/arm/mach-at91/gpio.c
 delete mode 100644 arch/arm/mach-at91/gpio.h
 delete mode 100644 arch/arm/mach-at91/gsia18s.h
 delete mode 100644 arch/arm/mach-at91/leds.c

Comments

Arnd Bergmann Dec. 4, 2014, 6:12 p.m. UTC | #1
On Thursday 04 December 2014 18:52:00 Nicolas Ferre wrote:
> This is the last "cleanup" pull-request for 3.19 on my side. Most of the work
> was done by Arnd actually 
> This simplifies even more the mach-at91 directory and remove a bunch of dead
> code. Arnd also wrote some more cleanup patches that I will keep for 3.20 as
> they modify files in a larger extent.
> 

Pulled into next/cleanup, thanks for organizing my draft patches properly!

	Arnd