linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] powerpc/dts: fix syntax bugs in bluestone.dts
@ 2011-01-03 21:07 Grant Likely
  2011-01-04 13:59 ` Josh Boyer
  0 siblings, 1 reply; 5+ messages in thread
From: Grant Likely @ 2011-01-03 21:07 UTC (permalink / raw)
  To: tmarri, jwboyer, linuxppc-dev

Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
---

I'm picking this one up immediately into my next-devicetree branch

g.

 arch/powerpc/boot/dts/bluestone.dts |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/powerpc/boot/dts/bluestone.dts b/arch/powerpc/boot/dts/bluestone.dts
index 9bb3d72..2a56a0d 100644
--- a/arch/powerpc/boot/dts/bluestone.dts
+++ b/arch/powerpc/boot/dts/bluestone.dts
@@ -33,7 +33,7 @@
 	aliases {
 		ethernet0 = &EMAC0;
 		serial0 = &UART0;
-		serial1 = &UART1;
+		//serial1 = &UART1; --gcl missing UART1 label
 	};
 
 	cpus {
@@ -52,7 +52,7 @@
 			d-cache-size = <32768>;
 			dcr-controller;
 			dcr-access-method = "native";
-			next-level-cache = <&L2C0>;
+			//next-level-cache = <&L2C0>; --gcl missing L2C0 label
 		};
 	};
 
@@ -142,7 +142,7 @@
 					/*RXEOB*/ 0x7 0x4
 					/*SERR*/  0x3 0x4
 					/*TXDE*/  0x4 0x4
-					/*RXDE*/  0x5 0x4
+					/*RXDE*/  0x5 0x4>;
 		};
 
 		POB0: opb {
@@ -182,7 +182,7 @@
 						reg = <0x001a0000 0x00060000>;
 					};
 				};
-			}
+			};
 
 			UART0: serial@ef600300 {
 				device_type = "serial";

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

* Re: [PATCH] powerpc/dts: fix syntax bugs in bluestone.dts
  2011-01-03 21:07 [PATCH] powerpc/dts: fix syntax bugs in bluestone.dts Grant Likely
@ 2011-01-04 13:59 ` Josh Boyer
  2011-01-04 14:30   ` Grant Likely
  0 siblings, 1 reply; 5+ messages in thread
From: Josh Boyer @ 2011-01-04 13:59 UTC (permalink / raw)
  To: Grant Likely; +Cc: tmarri, linuxppc-dev

On Mon, Jan 03, 2011 at 02:07:40PM -0700, Grant Likely wrote:
>Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
>---
>
>I'm picking this one up immediately into my next-devicetree branch

Hm.  So these are of course correct, and with that:

Acked-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>

but I do wonder how you noticed them?  DTC didn't throw an error when I
built this originally.  Either way, more diligence on my part would be
appropriate, but knowing how you came across these might teach me
something.

Nit: C++ comments still make me get queasy.  Maybe just remove the
properties that point to lables that don't exist?

josh

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

* Re: [PATCH] powerpc/dts: fix syntax bugs in bluestone.dts
  2011-01-04 13:59 ` Josh Boyer
@ 2011-01-04 14:30   ` Grant Likely
  2011-01-04 14:31     ` Josh Boyer
  0 siblings, 1 reply; 5+ messages in thread
From: Grant Likely @ 2011-01-04 14:30 UTC (permalink / raw)
  To: Josh Boyer; +Cc: tmarri, linuxppc-dev

On Tue, Jan 04, 2011 at 08:59:31AM -0500, Josh Boyer wrote:
> On Mon, Jan 03, 2011 at 02:07:40PM -0700, Grant Likely wrote:
> >Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
> >---
> >
> >I'm picking this one up immediately into my next-devicetree branch
> 
> Hm.  So these are of course correct, and with that:
> 
> Acked-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
> 
> but I do wonder how you noticed them?  DTC didn't throw an error when I
> built this originally.  Either way, more diligence on my part would be
> appropriate, but knowing how you came across these might teach me
> something.

I updated the copy of dtc in the kernel and rebuilt all the .dts files.

g.

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

* Re: [PATCH] powerpc/dts: fix syntax bugs in bluestone.dts
  2011-01-04 14:30   ` Grant Likely
@ 2011-01-04 14:31     ` Josh Boyer
  2011-01-04 18:38       ` Grant Likely
  0 siblings, 1 reply; 5+ messages in thread
From: Josh Boyer @ 2011-01-04 14:31 UTC (permalink / raw)
  To: Grant Likely; +Cc: tmarri, linuxppc-dev

On Tue, Jan 04, 2011 at 07:30:30AM -0700, Grant Likely wrote:
>On Tue, Jan 04, 2011 at 08:59:31AM -0500, Josh Boyer wrote:
>> On Mon, Jan 03, 2011 at 02:07:40PM -0700, Grant Likely wrote:
>> >Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
>> >---
>> >
>> >I'm picking this one up immediately into my next-devicetree branch
>> 
>> Hm.  So these are of course correct, and with that:
>> 
>> Acked-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
>> 
>> but I do wonder how you noticed them?  DTC didn't throw an error when I
>> built this originally.  Either way, more diligence on my part would be
>> appropriate, but knowing how you came across these might teach me
>> something.
>
>I updated the copy of dtc in the kernel and rebuilt all the .dts files.

Are you going to push that DTC update into the kernel as well?

josh

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

* Re: [PATCH] powerpc/dts: fix syntax bugs in bluestone.dts
  2011-01-04 14:31     ` Josh Boyer
@ 2011-01-04 18:38       ` Grant Likely
  0 siblings, 0 replies; 5+ messages in thread
From: Grant Likely @ 2011-01-04 18:38 UTC (permalink / raw)
  To: Josh Boyer; +Cc: tmarri, linuxppc-dev

On Tue, Jan 04, 2011 at 09:31:32AM -0500, Josh Boyer wrote:
> On Tue, Jan 04, 2011 at 07:30:30AM -0700, Grant Likely wrote:
> >On Tue, Jan 04, 2011 at 08:59:31AM -0500, Josh Boyer wrote:
> >> On Mon, Jan 03, 2011 at 02:07:40PM -0700, Grant Likely wrote:
> >> >Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
> >> >---
> >> >
> >> >I'm picking this one up immediately into my next-devicetree branch
> >> 
> >> Hm.  So these are of course correct, and with that:
> >> 
> >> Acked-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
> >> 
> >> but I do wonder how you noticed them?  DTC didn't throw an error when I
> >> built this originally.  Either way, more diligence on my part would be
> >> appropriate, but knowing how you came across these might teach me
> >> something.
> >
> >I updated the copy of dtc in the kernel and rebuilt all the .dts files.
> 
> Are you going to push that DTC update into the kernel as well?

Yes, that's what I mean by updating dtc.  It is in my next-devicetree branch.

g.

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

end of thread, other threads:[~2011-01-04 18:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-03 21:07 [PATCH] powerpc/dts: fix syntax bugs in bluestone.dts Grant Likely
2011-01-04 13:59 ` Josh Boyer
2011-01-04 14:30   ` Grant Likely
2011-01-04 14:31     ` Josh Boyer
2011-01-04 18:38       ` Grant Likely

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).