linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] at91: cleanup for 3.18 #2
@ 2014-11-13 17:45 Nicolas Ferre
  2014-11-13 17:48 ` [GIT PULL] at91: cleanup for 3.19 #2 Nicolas Ferre
  0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Ferre @ 2014-11-13 17:45 UTC (permalink / raw)
  To: linux-arm-kernel

Arnd, Olof, Kevin,

Little pull-request with some fixes following the legacy board removal done
earlier. I integrated the patch that Olof wrote in this branch before this series:
please tell me if it works on your side or if I need to do things differently.
The move of header files out of include/mach is useful for reset and memory
drivers.
More legacy code removal is in progress, but I didn't want to mix with this.
So, bigger cleanup to come...

Thanks, best regards,

The following changes since commit 7d7ef547d3fa47ac0df667a6e399eb1ebc60ec2d:

  ARM: at91: fix build breakage due to legacy board removals (2014-11-10 10:38:00 +0100)

are available in the git repository at:

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

for you to fetch changes up to f0a0a58e6f46c2dded813ee860b9cbd795b4e571:

  ARM: at91: move sdramc/ddrsdr header to include/soc/at91 (2014-11-13 12:03:44 +0100)

----------------------------------------------------------------
Second batch of cleanup/SoC for 3.19:
- fixes following legacy board removal
- removal of an unused config option CONFIG_MACH_SAMA5_DT
- move of some header files out of include/mach directory

----------------------------------------------------------------
Alexandre Belloni (2):
      ARM: at91: remove CONFIG_MACH_SAMA5_DT
      ARM: at91: move sdramc/ddrsdr header to include/soc/at91

Boris Brezillon (1):
      ARM: at91: remove useless init_time for DT-only SoCs

Nicolas Ferre (1):
      ARM: at91: remove unused CONFIG_ARCH_AT91SAM9G45 option

 MAINTAINERS                                                    |  1 +
 arch/arm/configs/sama5_defconfig                               |  1 -
 arch/arm/mach-at91/Kconfig                                     | 10 +---------
 arch/arm/mach-at91/Makefile                                    |  2 +-
 arch/arm/mach-at91/Makefile.boot                               |  6 ------
 arch/arm/mach-at91/at91sam9g45.c                               |  7 -------
 arch/arm/mach-at91/at91sam9rl.c                                |  7 -------
 arch/arm/mach-at91/board.h                                     |  4 ----
 arch/arm/mach-at91/include/mach/at91_ramc.h                    |  6 +++---
 arch/arm/mach-at91/pm.h                                        |  1 -
 drivers/power/reset/at91-reset.c                               |  4 ++--
 .../include/mach => include/soc/at91}/at91rm9200_sdramc.h      |  0
 .../include/mach => include/soc/at91}/at91sam9_ddrsdr.h        |  0
 .../include/mach => include/soc/at91}/at91sam9_sdramc.h        |  0
 14 files changed, 8 insertions(+), 41 deletions(-)
 rename {arch/arm/mach-at91/include/mach => include/soc/at91}/at91rm9200_sdramc.h (100%)
 rename {arch/arm/mach-at91/include/mach => include/soc/at91}/at91sam9_ddrsdr.h (100%)
 rename {arch/arm/mach-at91/include/mach => include/soc/at91}/at91sam9_sdramc.h (100%)

-- 
Nicolas Ferre

^ permalink raw reply	[flat|nested] 5+ messages in thread
* [GIT PULL] at91: cleanup for 3.18 #2
@ 2014-09-08 12:56 Nicolas Ferre
  2014-09-09 15:05 ` Arnd Bergmann
  0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Ferre @ 2014-09-08 12:56 UTC (permalink / raw)
  To: linux-arm-kernel

Arnd, Olof, Kevin,

Another pull-request that can be considered as "fixes-non-critical" or
"cleanup". I choose the latest as the patches are a little bit more than just
fixes.  The bug found by Ga?l is present on AT91 kernels for a long time so I
decided to avoid trying to submit it during the "-rc phase" or adding a
"stable" tag.
This material goes on top of the previous "cleanup" pull-request that you took
but comes with no dependency.

Thanks, best regards,

The following changes since commit 2626063f86cdce500153e8550334b9331421dc6f:

  ARM: at91: remove old irq material (2014-08-19 20:32:49 +0200)

are available in the git repository at:

  git://github.com/at91linux/linux-at91.git tags/at91-cleanup2

for you to fetch changes up to d07a1ecdfb96b26dd665b54fee22fc7417b1cb08:

  clocksource: tcb_clksrc: sanitize IRQ request (2014-09-08 10:54:03 +0200)

----------------------------------------------------------------
Second batch of AT91 cleanup for 3.18:
- Timer Counter (TC) fixup and cleanup:
  - fix segmentation fault when kexec-ing a kernel by masking
    TC interrupts at shutdown and probe time
  - use modern driver model: devm_*, probe function, sanitize IRQ request

----------------------------------------------------------------
Ga?l PORTAY (4):
      ARM: at91/tclib: prefer using of devm_* functions
      ARM: at91/tclib: move initialization from alloc to probe
      ARM: at91/tclib: mask interruptions at shutdown and probe
      clocksource: tcb_clksrc: sanitize IRQ request

 drivers/clocksource/tcb_clksrc.c |  15 ++----
 drivers/misc/atmel_tclib.c       | 101 +++++++++++++++--------------------
 drivers/pwm/pwm-atmel-tcb.c      |   2 +-
 include/linux/atmel_tc.h         |  13 +++--
 4 files changed, 60 insertions(+), 71 deletions(-)

-- 
Nicolas Ferre

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

end of thread, other threads:[~2014-11-20 12:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-13 17:45 [GIT PULL] at91: cleanup for 3.18 #2 Nicolas Ferre
2014-11-13 17:48 ` [GIT PULL] at91: cleanup for 3.19 #2 Nicolas Ferre
2014-11-20 12:36   ` Arnd Bergmann
  -- strict thread matches above, loose matches on Subject: below --
2014-09-08 12:56 [GIT PULL] at91: cleanup for 3.18 #2 Nicolas Ferre
2014-09-09 15:05 ` Arnd Bergmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).