linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* PATCH[1/1] 8xx: Add clock-frequency to Adder875 and mpc885ads board ports
@ 2008-01-30 23:34 Bryan O'Donoghue
  2008-02-01 21:00 ` Scott Wood
  0 siblings, 1 reply; 3+ messages in thread
From: Bryan O'Donoghue @ 2008-01-30 23:34 UTC (permalink / raw)
  To: linuxppc-dev, scottwood

Redo the addition of the clock-frequency parameter to the Adder875 .dts
so that the values are decimal rather then hex.


Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
---

diff --git a/arch/powerpc/boot/dts/adder875-redboot.dts
b/arch/powerpc/boot/dts/adder875-redboot.dts
index 7c25d96..c508f3c 100644
--- a/arch/powerpc/boot/dts/adder875-redboot.dts
+++ b/arch/powerpc/boot/dts/adder875-redboot.dts
@@ -149,6 +149,7 @@
                                compatible = "fsl,mpc875-brg",
                                             "fsl,cpm1-brg",
                                             "fsl,cpm-brg";
+                               clock-frequency = <50000000>;
                                reg = <0x9f0 0x10>;
                        };
 
diff --git a/arch/powerpc/boot/dts/adder875-uboot.dts
b/arch/powerpc/boot/dts/adder875-uboot.dts
index 605202f..d7ac416 100644
--- a/arch/powerpc/boot/dts/adder875-uboot.dts
+++ b/arch/powerpc/boot/dts/adder875-uboot.dts
@@ -148,6 +148,7 @@
                                compatible = "fsl,mpc875-brg",
                                             "fsl,cpm1-brg",
                                             "fsl,cpm-brg";
+                               clock-frequency = <50000000>;
                               reg = <0x9f0 0x10>;
                        };
 
diff --git a/arch/powerpc/boot/dts/mpc885ads.dts
b/arch/powerpc/boot/dts/mpc885ads.dts
index 8848e63..f2a437b 100644
--- a/arch/powerpc/boot/dts/mpc885ads.dts
+++ b/arch/powerpc/boot/dts/mpc885ads.dts
@@ -166,6 +166,7 @@
                                compatible = "fsl,mpc885-brg",
                                             "fsl,cpm1-brg",
                                             "fsl,cpm-brg";
+                               clock-frequency = <0>;
                                reg = <9f0 10>;
                        };

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

* Re: PATCH[1/1] 8xx: Add clock-frequency to Adder875 and mpc885ads board ports
  2008-01-30 23:34 PATCH[1/1] 8xx: Add clock-frequency to Adder875 and mpc885ads board ports Bryan O'Donoghue
@ 2008-02-01 21:00 ` Scott Wood
  2008-02-02 11:36   ` Bryan O'Donoghue
  0 siblings, 1 reply; 3+ messages in thread
From: Scott Wood @ 2008-02-01 21:00 UTC (permalink / raw)
  To: Bryan O'Donoghue; +Cc: linuxppc-dev

Bryan O'Donoghue wrote:
> Redo the addition of the clock-frequency parameter to the Adder875 .dts
> so that the values are decimal rather then hex.
> 
> 
> Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
> ---
> 
> diff --git a/arch/powerpc/boot/dts/adder875-redboot.dts
> b/arch/powerpc/boot/dts/adder875-redboot.dts
> index 7c25d96..c508f3c 100644
> --- a/arch/powerpc/boot/dts/adder875-redboot.dts
> +++ b/arch/powerpc/boot/dts/adder875-redboot.dts
> @@ -149,6 +149,7 @@
>                                 compatible = "fsl,mpc875-brg",
>                                              "fsl,cpm1-brg",
>                                              "fsl,cpm-brg";
> +                               clock-frequency = <50000000>;
>                                 reg = <0x9f0 0x10>;
>                         };

This patch is whitespace-mangled (all tabs are spaces, even in quoted 
sections).

-Scott

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

* Re: PATCH[1/1] 8xx: Add clock-frequency to Adder875 and mpc885ads board ports
  2008-02-01 21:00 ` Scott Wood
@ 2008-02-02 11:36   ` Bryan O'Donoghue
  0 siblings, 0 replies; 3+ messages in thread
From: Bryan O'Donoghue @ 2008-02-02 11:36 UTC (permalink / raw)
  To: Scott Wood; +Cc: linuxppc-dev

On Fri, 2008-02-01 at 15:00 -0600, Scott Wood wrote:
> Bryan O'Donoghue wrote:
> > Redo the addition of the clock-frequency parameter to the Adder875 .dts
> > so that the values are decimal rather then hex.
> > 
> > 
> > Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
> > ---
> > 
> > diff --git a/arch/powerpc/boot/dts/adder875-redboot.dts
> > b/arch/powerpc/boot/dts/adder875-redboot.dts
> > index 7c25d96..c508f3c 100644
> > --- a/arch/powerpc/boot/dts/adder875-redboot.dts
> > +++ b/arch/powerpc/boot/dts/adder875-redboot.dts
> > @@ -149,6 +149,7 @@
> >                                 compatible = "fsl,mpc875-brg",
> >                                              "fsl,cpm1-brg",
> >                                              "fsl,cpm-brg";
> > +                               clock-frequency = <50000000>;
> >                                 reg = <0x9f0 0x10>;
> >                         };

Actually I was wondering myself why the file was using whitespace
instead of tabs - no doubt something to do with copying between
evolution + gedit.

Will fix this up with vim

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

end of thread, other threads:[~2008-02-02 11:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-30 23:34 PATCH[1/1] 8xx: Add clock-frequency to Adder875 and mpc885ads board ports Bryan O'Donoghue
2008-02-01 21:00 ` Scott Wood
2008-02-02 11:36   ` Bryan O'Donoghue

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