* [PATCH] mach-ux500: add devicetree compat nodes
@ 2011-11-11 15:05 Niklas Hernaeus
[not found] ` <1321023902-18870-1-git-send-email-niklas.hernaeus-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
0 siblings, 1 reply; 8+ messages in thread
From: Niklas Hernaeus @ 2011-11-11 15:05 UTC (permalink / raw)
To: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
Rob.Herring.rob.herring-bsGFqQB8/DxBDgjK7y7TUQ
Cc: Nicolas.Pitre.nicolas.pitre-QSEj5FYQhm4dnm+yROfE0A,
Grant.Likely.grant.likely-s3s/WqlpOiPyB63q8FvJNQ,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
From: Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
This adds devicetree compat members to all the U8500 reference
boards.
Signed-off-by: Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
---
arch/arm/mach-ux500/board-mop500.c | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c
index cd54aba..7cbefa7 100644
--- a/arch/arm/mach-ux500/board-mop500.c
+++ b/arch/arm/mach-ux500/board-mop500.c
@@ -643,6 +643,21 @@ static void __init mop500_init_machine(void)
regulator_has_full_constraints();
}
+static const char * mop500_dt_board_compat[] = {
+ "stericsson,mop500",
+ NULL
+};
+
+static const char * hrefv60_dt_board_compat[] = {
+ "stericsson,hrefv60",
+ NULL
+};
+
+static const char * snowball_dt_board_compat[] = {
+ "stericsson,snowball",
+ NULL
+};
+
MACHINE_START(U8500, "ST-Ericsson MOP500 platform")
/* Maintainer: Srinidhi Kasagar <srinidhi.kasagar-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org> */
.boot_params = 0x100,
@@ -651,6 +666,7 @@ MACHINE_START(U8500, "ST-Ericsson MOP500 platform")
/* we re-use nomadik timer here */
.timer = &ux500_timer,
.init_machine = mop500_init_machine,
+ .dt_compat = mop500_dt_board_compat,
MACHINE_END
MACHINE_START(HREFV60, "ST-Ericsson U8500 Platform HREFv60+")
@@ -659,6 +675,7 @@ MACHINE_START(HREFV60, "ST-Ericsson U8500 Platform HREFv60+")
.init_irq = ux500_init_irq,
.timer = &ux500_timer,
.init_machine = mop500_init_machine,
+ .dt_compat = hrefv60_dt_board_compat,
MACHINE_END
MACHINE_START(SNOWBALL, "Calao Systems Snowball platform")
@@ -668,4 +685,5 @@ MACHINE_START(SNOWBALL, "Calao Systems Snowball platform")
/* we re-use nomadik timer here */
.timer = &ux500_timer,
.init_machine = mop500_init_machine,
+ .dt_compat = snowball_dt_board_compat,
MACHINE_END
--
1.7.2.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] mach-ux500: add devicetree compat nodes
[not found] ` <1321023902-18870-1-git-send-email-niklas.hernaeus-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
@ 2011-11-11 15:17 ` Rob Herring
[not found] ` <4EBD3C85.1010508-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 8+ messages in thread
From: Rob Herring @ 2011-11-11 15:17 UTC (permalink / raw)
To: Niklas Hernaeus
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
Nicolas.Pitre.nicolas.pitre-QSEj5FYQhm4dnm+yROfE0A,
Grant.Likely.grant.likely-s3s/WqlpOiPyB63q8FvJNQ,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
On 11/11/2011 09:05 AM, Niklas Hernaeus wrote:
> From: Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
>
> This adds devicetree compat members to all the U8500 reference
> boards.
>
> Signed-off-by: Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
> ---
> arch/arm/mach-ux500/board-mop500.c | 18 ++++++++++++++++++
> 1 files changed, 18 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c
> index cd54aba..7cbefa7 100644
> --- a/arch/arm/mach-ux500/board-mop500.c
> +++ b/arch/arm/mach-ux500/board-mop500.c
> @@ -643,6 +643,21 @@ static void __init mop500_init_machine(void)
> regulator_has_full_constraints();
> }
>
> +static const char * mop500_dt_board_compat[] = {
> + "stericsson,mop500",
> + NULL
> +};
> +
> +static const char * hrefv60_dt_board_compat[] = {
> + "stericsson,hrefv60",
> + NULL
> +};
> +
> +static const char * snowball_dt_board_compat[] = {
> + "stericsson,snowball",
> + NULL
> +};
> +
> MACHINE_START(U8500, "ST-Ericsson MOP500 platform")
> /* Maintainer: Srinidhi Kasagar <srinidhi.kasagar-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org> */
> .boot_params = 0x100,
> @@ -651,6 +666,7 @@ MACHINE_START(U8500, "ST-Ericsson MOP500 platform")
> /* we re-use nomadik timer here */
> .timer = &ux500_timer,
> .init_machine = mop500_init_machine,
> + .dt_compat = mop500_dt_board_compat,
> MACHINE_END
>
> MACHINE_START(HREFV60, "ST-Ericsson U8500 Platform HREFv60+")
> @@ -659,6 +675,7 @@ MACHINE_START(HREFV60, "ST-Ericsson U8500 Platform HREFv60+")
> .init_irq = ux500_init_irq,
> .timer = &ux500_timer,
> .init_machine = mop500_init_machine,
> + .dt_compat = hrefv60_dt_board_compat,
> MACHINE_END
>
> MACHINE_START(SNOWBALL, "Calao Systems Snowball platform")
> @@ -668,4 +685,5 @@ MACHINE_START(SNOWBALL, "Calao Systems Snowball platform")
> /* we re-use nomadik timer here */
> .timer = &ux500_timer,
> .init_machine = mop500_init_machine,
> + .dt_compat = snowball_dt_board_compat,
> MACHINE_END
These all look very similar and should be combined. Why do you not have
1 machine for all DT platforms as other SOCs are doing?
Rob
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] mach-ux500: add devicetree compat nodes
@ 2011-11-11 15:17 Niklas Hernaeus
0 siblings, 0 replies; 8+ messages in thread
From: Niklas Hernaeus @ 2011-11-11 15:17 UTC (permalink / raw)
To: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, Rob Herring
Cc: Nicolas Pitre, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
From: Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
This adds devicetree compat members to all the U8500 reference
boards.
Signed-off-by: Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
---
arch/arm/mach-ux500/board-mop500.c | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c
index cd54aba..7cbefa7 100644
--- a/arch/arm/mach-ux500/board-mop500.c
+++ b/arch/arm/mach-ux500/board-mop500.c
@@ -643,6 +643,21 @@ static void __init mop500_init_machine(void)
regulator_has_full_constraints();
}
+static const char * mop500_dt_board_compat[] = {
+ "stericsson,mop500",
+ NULL
+};
+
+static const char * hrefv60_dt_board_compat[] = {
+ "stericsson,hrefv60",
+ NULL
+};
+
+static const char * snowball_dt_board_compat[] = {
+ "stericsson,snowball",
+ NULL
+};
+
MACHINE_START(U8500, "ST-Ericsson MOP500 platform")
/* Maintainer: Srinidhi Kasagar <srinidhi.kasagar-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org> */
.boot_params = 0x100,
@@ -651,6 +666,7 @@ MACHINE_START(U8500, "ST-Ericsson MOP500 platform")
/* we re-use nomadik timer here */
.timer = &ux500_timer,
.init_machine = mop500_init_machine,
+ .dt_compat = mop500_dt_board_compat,
MACHINE_END
MACHINE_START(HREFV60, "ST-Ericsson U8500 Platform HREFv60+")
@@ -659,6 +675,7 @@ MACHINE_START(HREFV60, "ST-Ericsson U8500 Platform HREFv60+")
.init_irq = ux500_init_irq,
.timer = &ux500_timer,
.init_machine = mop500_init_machine,
+ .dt_compat = hrefv60_dt_board_compat,
MACHINE_END
MACHINE_START(SNOWBALL, "Calao Systems Snowball platform")
@@ -668,4 +685,5 @@ MACHINE_START(SNOWBALL, "Calao Systems Snowball platform")
/* we re-use nomadik timer here */
.timer = &ux500_timer,
.init_machine = mop500_init_machine,
+ .dt_compat = snowball_dt_board_compat,
MACHINE_END
--
1.7.2.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] mach-ux500: add devicetree compat nodes
[not found] ` <4EBD3C85.1010508-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2011-11-11 15:59 ` Linus Walleij
[not found] ` <CACRpkda-9OVP8E1qO3Nc5znw_v7cKFiv8T5HHwTCnY2C9Fg7iA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
0 siblings, 1 reply; 8+ messages in thread
From: Linus Walleij @ 2011-11-11 15:59 UTC (permalink / raw)
To: Rob Herring, Lee Jones, Niklas Hernaeus
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
Nicolas.Pitre.nicolas.pitre-QSEj5FYQhm4dnm+yROfE0A,
Grant.Likely.grant.likely-s3s/WqlpOiPyB63q8FvJNQ,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
On Fri, Nov 11, 2011 at 4:17 PM, Rob Herring <robherring2-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>> MACHINE_START(U8500, "ST-Ericsson MOP500 platform")
>> /* Maintainer: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> */
>> .boot_params = 0x100,
>> @@ -651,6 +666,7 @@ MACHINE_START(U8500, "ST-Ericsson MOP500 platform")
>> /* we re-use nomadik timer here */
>> .timer = &ux500_timer,
>> .init_machine = mop500_init_machine,
>> + .dt_compat = mop500_dt_board_compat,
>> MACHINE_END
>>
>> MACHINE_START(HREFV60, "ST-Ericsson U8500 Platform HREFv60+")
>> @@ -659,6 +675,7 @@ MACHINE_START(HREFV60, "ST-Ericsson U8500 Platform HREFv60+")
>> .init_irq = ux500_init_irq,
>> .timer = &ux500_timer,
>> .init_machine = mop500_init_machine,
>> + .dt_compat = hrefv60_dt_board_compat,
>> MACHINE_END
>>
>> MACHINE_START(SNOWBALL, "Calao Systems Snowball platform")
>> @@ -668,4 +685,5 @@ MACHINE_START(SNOWBALL, "Calao Systems Snowball platform")
>> /* we re-use nomadik timer here */
>> .timer = &ux500_timer,
>> .init_machine = mop500_init_machine,
>> + .dt_compat = snowball_dt_board_compat,
>> MACHINE_END
>
> These all look very similar and should be combined. Why do you not have
> 1 machine for all DT platforms as other SOCs are doing?
This needs to be rebased for the latest kernel.
Which looks like this:
MACHINE_START(U8500, "ST-Ericsson MOP500 platform")
/* Maintainer: Srinidhi Kasagar <srinidhi.kasagar-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org> */
.atag_offset = 0x100,
.map_io = u8500_map_io,
.init_irq = ux500_init_irq,
/* we re-use nomadik timer here */
.timer = &ux500_timer,
.init_machine = mop500_init_machine,
MACHINE_END
MACHINE_START(HREFV60, "ST-Ericsson U8500 Platform HREFv60+")
.atag_offset = 0x100,
.map_io = u8500_map_io,
.init_irq = ux500_init_irq,
.timer = &ux500_timer,
.init_machine = hrefv60_init_machine,
MACHINE_END
MACHINE_START(SNOWBALL, "Calao Systems Snowball platform")
.atag_offset = 0x100,
.map_io = u8500_map_io,
.init_irq = ux500_init_irq,
/* we re-use nomadik timer here */
.timer = &ux500_timer,
.init_machine = snowball_init_machine,
MACHINE_END
So - different .init_machine() calls, needed to simplify the board
files as of now. (Patch from Lee Jones.)
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] mach-ux500: add devicetree compat nodes
[not found] ` <CACRpkda-9OVP8E1qO3Nc5znw_v7cKFiv8T5HHwTCnY2C9Fg7iA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2011-11-11 16:13 ` Rob Herring
[not found] ` <4EBD49A6.2020306-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 8+ messages in thread
From: Rob Herring @ 2011-11-11 16:13 UTC (permalink / raw)
To: Linus Walleij
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
Nicolas.Pitre.nicolas.pitre-QSEj5FYQhm4dnm+yROfE0A, Lee Jones,
Grant.Likely.grant.likely-s3s/WqlpOiPyB63q8FvJNQ,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
On 11/11/2011 09:59 AM, Linus Walleij wrote:
> On Fri, Nov 11, 2011 at 4:17 PM, Rob Herring <robherring2-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>
>>> MACHINE_START(U8500, "ST-Ericsson MOP500 platform")
>>> /* Maintainer: Srinidhi Kasagar <srinidhi.kasagar-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org> */
>>> .boot_params = 0x100,
>>> @@ -651,6 +666,7 @@ MACHINE_START(U8500, "ST-Ericsson MOP500 platform")
>>> /* we re-use nomadik timer here */
>>> .timer = &ux500_timer,
>>> .init_machine = mop500_init_machine,
>>> + .dt_compat = mop500_dt_board_compat,
>>> MACHINE_END
>>>
>>> MACHINE_START(HREFV60, "ST-Ericsson U8500 Platform HREFv60+")
>>> @@ -659,6 +675,7 @@ MACHINE_START(HREFV60, "ST-Ericsson U8500 Platform HREFv60+")
>>> .init_irq = ux500_init_irq,
>>> .timer = &ux500_timer,
>>> .init_machine = mop500_init_machine,
>>> + .dt_compat = hrefv60_dt_board_compat,
>>> MACHINE_END
>>>
>>> MACHINE_START(SNOWBALL, "Calao Systems Snowball platform")
>>> @@ -668,4 +685,5 @@ MACHINE_START(SNOWBALL, "Calao Systems Snowball platform")
>>> /* we re-use nomadik timer here */
>>> .timer = &ux500_timer,
>>> .init_machine = mop500_init_machine,
>>> + .dt_compat = snowball_dt_board_compat,
>>> MACHINE_END
>>
>> These all look very similar and should be combined. Why do you not have
>> 1 machine for all DT platforms as other SOCs are doing?
>
> This needs to be rebased for the latest kernel.
> Which looks like this:
>
> MACHINE_START(U8500, "ST-Ericsson MOP500 platform")
> /* Maintainer: Srinidhi Kasagar <srinidhi.kasagar-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org> */
> .atag_offset = 0x100,
> .map_io = u8500_map_io,
> .init_irq = ux500_init_irq,
> /* we re-use nomadik timer here */
> .timer = &ux500_timer,
> .init_machine = mop500_init_machine,
> MACHINE_END
>
> MACHINE_START(HREFV60, "ST-Ericsson U8500 Platform HREFv60+")
> .atag_offset = 0x100,
> .map_io = u8500_map_io,
> .init_irq = ux500_init_irq,
> .timer = &ux500_timer,
> .init_machine = hrefv60_init_machine,
> MACHINE_END
>
> MACHINE_START(SNOWBALL, "Calao Systems Snowball platform")
> .atag_offset = 0x100,
> .map_io = u8500_map_io,
> .init_irq = ux500_init_irq,
> /* we re-use nomadik timer here */
> .timer = &ux500_timer,
> .init_machine = snowball_init_machine,
> MACHINE_END
>
> So - different .init_machine() calls, needed to simplify the board
> files as of now. (Patch from Lee Jones.)
>
But ultimately I would expect that the init_machine calls to be the same
with a DT based machine. This goes back to do we add DT to existing
boards or create a new clean DT machine and add to it as boards are
converted?
Rob
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] mach-ux500: add devicetree compat nodes
[not found] ` <4EBD49A6.2020306-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2011-11-11 16:26 ` Linus Walleij
[not found] ` <CACRpkdZrWW2jUYC0P7yY322YMdn9+4_NaGPhKtpGwR+e=F6+0A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
0 siblings, 1 reply; 8+ messages in thread
From: Linus Walleij @ 2011-11-11 16:26 UTC (permalink / raw)
To: Rob Herring
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
Nicolas.Pitre.nicolas.pitre-QSEj5FYQhm4dnm+yROfE0A, Lee Jones,
Grant.Likely.grant.likely-s3s/WqlpOiPyB63q8FvJNQ,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
On Fri, Nov 11, 2011 at 5:13 PM, Rob Herring <robherring2-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> On 11/11/2011 09:59 AM, Linus Walleij wrote:
>>
>> So - different .init_machine() calls, needed to simplify the board
>> files as of now. (Patch from Lee Jones.)
>
> But ultimately I would expect that the init_machine calls to be the same
> with a DT based machine. This goes back to do we add DT to existing
> boards or create a new clean DT machine and add to it as boards are
> converted?
Yes that should be the ultimate goal. So the current per-board
init functions register the I2C, MMC (SDI), SPI, UART and
regulator devices etc. So then these drivers need to be patched to
get their board/platform data from DT first.
In that case we should hold this patch off and only keep it for
internal testing until all necessary drivers are ready and patched
so we can replace all board files with a single DT-based one,
instead of this compromise solution.
Is this what everybody else does?
Thanks,
Linus Walleij
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] mach-ux500: add devicetree compat nodes
[not found] ` <CACRpkdZrWW2jUYC0P7yY322YMdn9+4_NaGPhKtpGwR+e=F6+0A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2011-11-11 16:38 ` Rob Herring
[not found] ` <4EBD4F79.90302-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 8+ messages in thread
From: Rob Herring @ 2011-11-11 16:38 UTC (permalink / raw)
To: Linus Walleij
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
Nicolas.Pitre.nicolas.pitre-QSEj5FYQhm4dnm+yROfE0A, Lee Jones,
Grant.Likely.grant.likely-s3s/WqlpOiPyB63q8FvJNQ,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
On 11/11/2011 10:26 AM, Linus Walleij wrote:
> On Fri, Nov 11, 2011 at 5:13 PM, Rob Herring <robherring2-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>> On 11/11/2011 09:59 AM, Linus Walleij wrote:
>>>
>>> So - different .init_machine() calls, needed to simplify the board
>>> files as of now. (Patch from Lee Jones.)
>>
>> But ultimately I would expect that the init_machine calls to be the same
>> with a DT based machine. This goes back to do we add DT to existing
>> boards or create a new clean DT machine and add to it as boards are
>> converted?
>
> Yes that should be the ultimate goal. So the current per-board
> init functions register the I2C, MMC (SDI), SPI, UART and
> regulator devices etc. So then these drivers need to be patched to
> get their board/platform data from DT first.
>
> In that case we should hold this patch off and only keep it for
> internal testing until all necessary drivers are ready and patched
> so we can replace all board files with a single DT-based one,
> instead of this compromise solution.
>
I would not hold off. You only need to have a minimal set that's enough
to boot.
> Is this what everybody else does?
That was the the consensus in Budapest in May. It's much cleaner to
start with a new board file and then ultimately just delete the old
ones. But it's really up to the board/SOC maintainer.
Rob
> Thanks,
> Linus Walleij
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] mach-ux500: add devicetree compat nodes
[not found] ` <4EBD4F79.90302-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2011-11-11 17:00 ` Linus Walleij
0 siblings, 0 replies; 8+ messages in thread
From: Linus Walleij @ 2011-11-11 17:00 UTC (permalink / raw)
To: Rob Herring
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
Nicolas.Pitre.nicolas.pitre-QSEj5FYQhm4dnm+yROfE0A, Lee Jones,
Grant.Likely.grant.likely-s3s/WqlpOiPyB63q8FvJNQ,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
On Fri, Nov 11, 2011 at 5:38 PM, Rob Herring <robherring2-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> [Me]
>> In that case we should hold this patch off and only keep it for
>> internal testing until all necessary drivers are ready and patched
>> so we can replace all board files with a single DT-based one,
>> instead of this compromise solution.
>>
> I would not hold off. You only need to have a minimal set that's enough
> to boot.
In our case UART, I2C and MMC is necessary to boot, so then we
anyway need to wait for these to be patched first. So we'd better hold
it back for now I think.
Linus Walleij
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2011-11-11 17:00 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-11 15:05 [PATCH] mach-ux500: add devicetree compat nodes Niklas Hernaeus
[not found] ` <1321023902-18870-1-git-send-email-niklas.hernaeus-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2011-11-11 15:17 ` Rob Herring
[not found] ` <4EBD3C85.1010508-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2011-11-11 15:59 ` Linus Walleij
[not found] ` <CACRpkda-9OVP8E1qO3Nc5znw_v7cKFiv8T5HHwTCnY2C9Fg7iA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-11-11 16:13 ` Rob Herring
[not found] ` <4EBD49A6.2020306-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2011-11-11 16:26 ` Linus Walleij
[not found] ` <CACRpkdZrWW2jUYC0P7yY322YMdn9+4_NaGPhKtpGwR+e=F6+0A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-11-11 16:38 ` Rob Herring
[not found] ` <4EBD4F79.90302-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2011-11-11 17:00 ` Linus Walleij
-- strict thread matches above, loose matches on Subject: below --
2011-11-11 15:17 Niklas Hernaeus
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).