* [GIT PULL] at91: cleanup for 4.1 #4
@ 2015-03-23 11:04 Nicolas Ferre
2015-04-03 18:05 ` Olof Johansson
0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Ferre @ 2015-03-23 11:04 UTC (permalink / raw)
To: linux-arm-kernel
Arnd, Olof, Kevin,
Another cleanup pull-request for fixing some issues and stacking more PM
cleanup.
It is based on the previous "at91-cleanup3" tag sent last week (not inclueded
yet).
Thanks, best regards,
The following changes since commit 8590ca655a19f9e124b52bfbf28f14eb16a05bec:
ARM: at91: remove useless include (2015-03-16 17:03:08 +0100)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git tags/at91-cleanup4
for you to fetch changes up to dd905bbb09383f9f62d7a6296f11788d8c283c86:
ARM: at91/pm: move AT91_MEMCTRL_* to pm.h (2015-03-23 11:16:00 +0100)
----------------------------------------------------------------
Fourth batch of cleanup for 4.1:
- 2 issues revealed by the kbuild test robot fixed
- move of some functions and macros into relevant files to be able to
streamline the at91 specific header afterwards
----------------------------------------------------------------
Alexandre Belloni (4):
ARM: at91: fix pm_suspend.S compilation when ARMv6 is selected
clocksource: atmel-st: select MFD_SYSCON
ARM: at91/pm: move the standby functions to pm.c
ARM: at91/pm: move AT91_MEMCTRL_* to pm.h
arch/arm/mach-at91/Makefile | 3 +
arch/arm/mach-at91/include/mach/at91_ramc.h | 4 --
arch/arm/mach-at91/pm.c | 89 ++++++++++++++++++++++++++
arch/arm/mach-at91/pm.h | 96 ++---------------------------
drivers/clocksource/Kconfig | 1 +
5 files changed, 97 insertions(+), 96 deletions(-)
--
Nicolas Ferre
^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] at91: cleanup for 4.1 #4
2015-03-23 11:04 [GIT PULL] at91: cleanup for 4.1 #4 Nicolas Ferre
@ 2015-04-03 18:05 ` Olof Johansson
2015-04-05 20:17 ` [GIT PULL] at91: cleanup for 4.1 #4 (bis) Nicolas Ferre
2015-04-05 20:26 ` [GIT PULL] at91: clocksource-driver for 4.1 #2 Nicolas Ferre
0 siblings, 2 replies; 6+ messages in thread
From: Olof Johansson @ 2015-04-03 18:05 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Mar 23, 2015 at 12:04:11PM +0100, Nicolas Ferre wrote:
> Arnd, Olof, Kevin,
>
> Another cleanup pull-request for fixing some issues and stacking more PM
> cleanup.
> It is based on the previous "at91-cleanup3" tag sent last week (not inclueded
> yet).
>
> Thanks, best regards,
>
> The following changes since commit 8590ca655a19f9e124b52bfbf28f14eb16a05bec:
>
> ARM: at91: remove useless include (2015-03-16 17:03:08 +0100)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git tags/at91-cleanup4
>
> for you to fetch changes up to dd905bbb09383f9f62d7a6296f11788d8c283c86:
>
> ARM: at91/pm: move AT91_MEMCTRL_* to pm.h (2015-03-23 11:16:00 +0100)
>
> ----------------------------------------------------------------
> Fourth batch of cleanup for 4.1:
> - 2 issues revealed by the kbuild test robot fixed
> - move of some functions and macros into relevant files to be able to
> streamline the at91 specific header afterwards
>
> ----------------------------------------------------------------
> Alexandre Belloni (4):
> ARM: at91: fix pm_suspend.S compilation when ARMv6 is selected
> clocksource: atmel-st: select MFD_SYSCON
> ARM: at91/pm: move the standby functions to pm.c
> ARM: at91/pm: move AT91_MEMCTRL_* to pm.h
Having a linear cleanup branch doesn't work all that well when you mix in
driver changes like you did in the last version. I.e. I chose to merge that
branch in as a driver branch, but now you're stacking new cleanuips on top.
If the pm changes are independent of the clocksource one (which they seem to
be), then it's better to do base them on the cleanup2 branch instead of
cleanup3.
Would you mind respinning that way? We should still be able to take them
for 4.1.
-Olof
^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] at91: cleanup for 4.1 #4 (bis)
2015-04-03 18:05 ` Olof Johansson
@ 2015-04-05 20:17 ` Nicolas Ferre
2015-04-13 23:52 ` Arnd Bergmann
2015-04-05 20:26 ` [GIT PULL] at91: clocksource-driver for 4.1 #2 Nicolas Ferre
1 sibling, 1 reply; 6+ messages in thread
From: Nicolas Ferre @ 2015-04-05 20:17 UTC (permalink / raw)
To: linux-arm-kernel
Arnd, Olof, Kevin,
This is a re-spin of my 4th "cleanup" pull-request following the comments made
by Olof. So, now these patches about PM are based on the "at91-cleanup2" that
you would merge in your next/cleanup branch.
I'm preparing another pull-request for the other patch that would stack on our
at91/clocksource-driver branch.
Thanks for your advice, bye.
The following changes since commit 598e085590fc5ac1fecff00e842a8a6c2ae010e5:
ARM: at91: remove old setup (2015-03-13 18:01:10 +0100)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git tags/at91-cleanup4_bis
for you to fetch changes up to 2e57dc087c27b8b0bd4a9e5f2c6f28f3cd0b47ff:
ARM: at91/pm: move AT91_MEMCTRL_* to pm.h (2015-04-05 21:59:52 +0200)
----------------------------------------------------------------
Fourth batch of cleanup for 4.1:
- 1 issues revealed by the kbuild test robot fixed
- move of some functions and macros into relevant files to be able to
streamline the at91 specific header afterwards
----------------------------------------------------------------
Alexandre Belloni (3):
ARM: at91: fix pm_suspend.S compilation when ARMv6 is selected
ARM: at91/pm: move the standby functions to pm.c
ARM: at91/pm: move AT91_MEMCTRL_* to pm.h
arch/arm/mach-at91/Makefile | 3 +
arch/arm/mach-at91/include/mach/at91_ramc.h | 4 --
arch/arm/mach-at91/pm.c | 89 ++++++++++++++++++++++++++
arch/arm/mach-at91/pm.h | 96 ++---------------------------
4 files changed, 96 insertions(+), 96 deletions(-)
--
Nicolas Ferre
^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] at91: clocksource-driver for 4.1 #2
2015-04-03 18:05 ` Olof Johansson
2015-04-05 20:17 ` [GIT PULL] at91: cleanup for 4.1 #4 (bis) Nicolas Ferre
@ 2015-04-05 20:26 ` Nicolas Ferre
2015-04-13 23:53 ` Arnd Bergmann
1 sibling, 1 reply; 6+ messages in thread
From: Nicolas Ferre @ 2015-04-05 20:26 UTC (permalink / raw)
To: linux-arm-kernel
Arnd, Olof, Kevin,
This is the patch that was extracted from my previous pull request and that
would go on top of your at91/clocksource-driver branch.
Thanks, best regards,
The following changes since commit 8590ca655a19f9e124b52bfbf28f14eb16a05bec:
ARM: at91: remove useless include (2015-03-16 17:03:08 +0100)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git tags/at91-clocksource-driver2
for you to fetch changes up to 7ab7ef741a467e7af50c9b7446ec992bec9ea6a7:
clocksource: atmel-st: select MFD_SYSCON (2015-04-05 22:19:50 +0200)
----------------------------------------------------------------
A fix for the ST clocksource driver Kconfig option
----------------------------------------------------------------
Alexandre Belloni (1):
clocksource: atmel-st: select MFD_SYSCON
drivers/clocksource/Kconfig | 1 +
1 file changed, 1 insertion(+)
--
Nicolas Ferre
^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] at91: cleanup for 4.1 #4 (bis)
2015-04-05 20:17 ` [GIT PULL] at91: cleanup for 4.1 #4 (bis) Nicolas Ferre
@ 2015-04-13 23:52 ` Arnd Bergmann
0 siblings, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2015-04-13 23:52 UTC (permalink / raw)
To: linux-arm-kernel
On Sunday 05 April 2015, Nicolas Ferre wrote:
> Fourth batch of cleanup for 4.1:
> - 1 issues revealed by the kbuild test robot fixed
> - move of some functions and macros into relevant files to be able to
> streamline the at91 specific header afterwards
>
As we should really have the bug fix in the next/multiplatform branch,
I've pulled all of this in.
Sorry for the delay, I hope we don't get into trouble for adding
this too late.
Arnd
^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] at91: clocksource-driver for 4.1 #2
2015-04-05 20:26 ` [GIT PULL] at91: clocksource-driver for 4.1 #2 Nicolas Ferre
@ 2015-04-13 23:53 ` Arnd Bergmann
0 siblings, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2015-04-13 23:53 UTC (permalink / raw)
To: linux-arm-kernel
On Sunday 05 April 2015, Nicolas Ferre wrote:
> A fix for the ST clocksource driver Kconfig option
Pulled into next/drivers, thanks!
Arnd
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2015-04-13 23:53 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-23 11:04 [GIT PULL] at91: cleanup for 4.1 #4 Nicolas Ferre
2015-04-03 18:05 ` Olof Johansson
2015-04-05 20:17 ` [GIT PULL] at91: cleanup for 4.1 #4 (bis) Nicolas Ferre
2015-04-13 23:52 ` Arnd Bergmann
2015-04-05 20:26 ` [GIT PULL] at91: clocksource-driver for 4.1 #2 Nicolas Ferre
2015-04-13 23:53 ` 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).