Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1271099 > unrolled thread

[GIT PULL] at91: fixes for 4.4 #1

Started byNicolas Ferre <nicolas.ferre@atmel.com>
First post2015-11-17 12:40 +0100
Last post2015-11-19 20:50 +0100
Articles 4 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [GIT PULL] at91: fixes for 4.4 #1 Nicolas Ferre <nicolas.ferre@atmel.com> - 2015-11-17 12:40 +0100
    Re: [GIT PULL] at91: fixes for 4.4 #1 Arnd Bergmann <arnd@arndb.de> - 2015-11-19 16:30 +0100
      Re: [GIT PULL] at91: fixes for 4.4 #1 Nicolas Ferre <nicolas.ferre@atmel.com> - 2015-11-19 18:50 +0100
        Re: [GIT PULL] at91: fixes for 4.4 #1 Arnd Bergmann <arnd@arndb.de> - 2015-11-19 20:50 +0100

#1271099 — [GIT PULL] at91: fixes for 4.4 #1

FromNicolas Ferre <nicolas.ferre@atmel.com>
Date2015-11-17 12:40 +0100
Subject[GIT PULL] at91: fixes for 4.4 #1
Message-ID<qvMMa-4qX-19@gated-at.bofh.it>
Arnd, Olof, Kevin,

This is the first "fixes" pull-request for AT91. I tried to collect little
patches that didn't make it for -rc1.
It can be due to synchronization between trees like the addition of some
sama5d2 Xplained nodes (MFD tree) or the change of the watchdog compatible
string for sama5d4 (watchdog tree).
It can also be due to trivial cleanups that were spotted or submitted late like
the replacement of "wakeup" properties or removal of unneeded defconfig option.
The removal of some dead legacy DT properties or nodes is, in my opinion worth
it as well in order to prevent us from abusive cut'n paste.
NAND and ISI Atmel MAINTAINERS entries are also updated.

Tell me if it's okay for you.

Thanks, best regards,

The following changes since commit 8005c49d9aea74d382f474ce11afbbc7d7130bec:

  Linux 4.4-rc1 (2015-11-15 17:00:27 -0800)

are available in the git repository at:

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

for you to fetch changes up to 50cb2efaa63bdfd4a68b94acc55a12e68d9c33d4:

  MAINTAINERS: Atmel drivers: change NAND and ISI entries (2015-11-17 12:08:46 +0100)

----------------------------------------------------------------
First fixes for 4.4:
- removal of a useless defconfig option
- removal of some legacy DT pieces
- use of the proper watchdog compatible string
- addition of some sama5d2 Xplained nodes now that the MFD include is in place
- update of the MAINTAINERS entries for some Atmel drivers

----------------------------------------------------------------
Alexandre Belloni (2):
      ARM: at91/dt: remove leftovers clock definition
      ARM: at91/dt: remove bootargs

Ludovic Desroches (1):
      ARM: at91/dt: sama5d2 Xplained: add several devices

Nicolas Ferre (2):
      ARM: at91/defconfig: remove CONFIG_SSB from Atmel defconfigs
      MAINTAINERS: Atmel drivers: change NAND and ISI entries

Sudeep Holla (1):
      ARM: at91/dt: replace gpio-key,wakeup with wakeup-source property

Wenyou Yang (1):
      ARM: at91/dt: sama5d4: change watchdog compatible

 MAINTAINERS                                 |   5 +-
 arch/arm/boot/dts/animeo_ip.dts             |   6 +-
 arch/arm/boot/dts/at91-foxg20.dts           |   2 +-
 arch/arm/boot/dts/at91-kizbox.dts           |  13 +---
 arch/arm/boot/dts/at91-kizbox2.dts          |   6 +-
 arch/arm/boot/dts/at91-kizboxmini.dts       |   4 +-
 arch/arm/boot/dts/at91-qil_a9260.dts        |   2 +-
 arch/arm/boot/dts/at91-sama5d2_xplained.dts | 115 +++++++++++++++++++++++++---
 arch/arm/boot/dts/at91-sama5d3_xplained.dts |   2 +-
 arch/arm/boot/dts/at91-sama5d4_xplained.dts |  12 +--
 arch/arm/boot/dts/at91-sama5d4ek.dts        |  12 +--
 arch/arm/boot/dts/at91rm9200ek.dts          |   9 ---
 arch/arm/boot/dts/at91sam9261ek.dts         |  19 ++---
 arch/arm/boot/dts/at91sam9263ek.dts         |  13 +---
 arch/arm/boot/dts/at91sam9g20ek_common.dtsi |  13 +---
 arch/arm/boot/dts/at91sam9m10g45ek.dts      |  13 +---
 arch/arm/boot/dts/at91sam9n12ek.dts         |  11 +--
 arch/arm/boot/dts/at91sam9rlek.dts          |  13 +---
 arch/arm/boot/dts/at91sam9x5cm.dtsi         |  11 ---
 arch/arm/boot/dts/sama5d35ek.dts            |   2 +-
 arch/arm/boot/dts/sama5d4.dtsi              |   2 +-
 arch/arm/boot/dts/usb_a9260_common.dtsi     |   2 +-
 arch/arm/boot/dts/usb_a9263.dts             |   2 +-
 arch/arm/configs/at91_dt_defconfig          |   1 -
 arch/arm/configs/sama5_defconfig            |   1 -
 25 files changed, 142 insertions(+), 149 deletions(-)

-- 
Nicolas Ferre
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1273213

FromArnd Bergmann <arnd@arndb.de>
Date2015-11-19 16:30 +0100
Message-ID<qwzjQ-2Fh-19@gated-at.bofh.it>
In reply to#1271099
On Tuesday 17 November 2015 12:35:58 Nicolas Ferre wrote:
> Arnd, Olof, Kevin,
> 
> This is the first "fixes" pull-request for AT91. I tried to collect little
> patches that didn't make it for -rc1.
> It can be due to synchronization between trees like the addition of some
> sama5d2 Xplained nodes (MFD tree) or the change of the watchdog compatible
> string for sama5d4 (watchdog tree).
> It can also be due to trivial cleanups that were spotted or submitted late like
> the replacement of "wakeup" properties or removal of unneeded defconfig option.
> The removal of some dead legacy DT properties or nodes is, in my opinion worth
> it as well in order to prevent us from abusive cut'n paste.
> NAND and ISI Atmel MAINTAINERS entries are also updated.
> 
> Tell me if it's okay for you.

I'd be happer to get the patches late in the process and then push back
myself than to get them as fixes, there was really no reason to wait
for the merge window to end with the ones that you already had.

None of the changes look too invasive for -rc2, so I'm taking it anway,
but please try to let us know what you have earlier next time, so we
can get the first fixes into the merge window, or add them as late
additions on the branches before sending the main pull requests.

Inter-tree dependencies should never be a reason to send stuff after
-rc1, let's talk about that before the merge window if you know you
have those.

	Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1273307

FromNicolas Ferre <nicolas.ferre@atmel.com>
Date2015-11-19 18:50 +0100
Message-ID<qwBvj-40t-7@gated-at.bofh.it>
In reply to#1273213
Le 19/11/2015 16:22, Arnd Bergmann a écrit :
> On Tuesday 17 November 2015 12:35:58 Nicolas Ferre wrote:
>> Arnd, Olof, Kevin,
>>
>> This is the first "fixes" pull-request for AT91. I tried to collect little
>> patches that didn't make it for -rc1.
>> It can be due to synchronization between trees like the addition of some
>> sama5d2 Xplained nodes (MFD tree) or the change of the watchdog compatible
>> string for sama5d4 (watchdog tree).
>> It can also be due to trivial cleanups that were spotted or submitted late like
>> the replacement of "wakeup" properties or removal of unneeded defconfig option.
>> The removal of some dead legacy DT properties or nodes is, in my opinion worth
>> it as well in order to prevent us from abusive cut'n paste.
>> NAND and ISI Atmel MAINTAINERS entries are also updated.
>>
>> Tell me if it's okay for you.
> 
> I'd be happier to get the patches late in the process and then push back
> myself than to get them as fixes, there was really no reason to wait
> for the merge window to end with the ones that you already had.

I thought than having a precise milestone as a base for this
pull-request would be preferred.

> None of the changes look too invasive for -rc2, so I'm taking it anyway,
> but please try to let us know what you have earlier next time, so we
> can get the first fixes into the merge window, or add them as late
> additions on the branches before sending the main pull requests.
> 
> Inter-tree dependencies should never be a reason to send stuff after
> -rc1, let's talk about that before the merge window if you know you
> have those.

Sure, the communication in advance with you would have make all this
easier, sorry for not having done this.

Thanks Arnd. Bye,
-- 
Nicolas Ferre
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1273439

FromArnd Bergmann <arnd@arndb.de>
Date2015-11-19 20:50 +0100
Message-ID<qwDns-5hz-13@gated-at.bofh.it>
In reply to#1273307
On Thursday 19 November 2015 18:44:57 Nicolas Ferre wrote:
> Le 19/11/2015 16:22, Arnd Bergmann a écrit :
> > On Tuesday 17 November 2015 12:35:58 Nicolas Ferre wrote:
> >> Arnd, Olof, Kevin,
> >>
> >> This is the first "fixes" pull-request for AT91. I tried to collect little
> >> patches that didn't make it for -rc1.
> >> It can be due to synchronization between trees like the addition of some
> >> sama5d2 Xplained nodes (MFD tree) or the change of the watchdog compatible
> >> string for sama5d4 (watchdog tree).
> >> It can also be due to trivial cleanups that were spotted or submitted late like
> >> the replacement of "wakeup" properties or removal of unneeded defconfig option.
> >> The removal of some dead legacy DT properties or nodes is, in my opinion worth
> >> it as well in order to prevent us from abusive cut'n paste.
> >> NAND and ISI Atmel MAINTAINERS entries are also updated.
> >>
> >> Tell me if it's okay for you.
> > 
> > I'd be happier to get the patches late in the process and then push back
> > myself than to get them as fixes, there was really no reason to wait
> > for the merge window to end with the ones that you already had.
> 
> I thought than having a precise milestone as a base for this
> pull-request would be preferred.

It is, but if you have a branch that introduces or exposes a bug,
then I'd prefer to get a pull request with the bug fixes on top
of the branch that we already have, e.g. the at91/dt branch
(as opposed to next/dt or for-next, which would be wrong).

	Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web