Re: Use aliases instead of linux,network-index on Ebony

2008-02-24 Thread David Gibson
On Sun, Feb 24, 2008 at 10:34:43PM -0600, Josh Boyer wrote: > On Mon, 25 Feb 2008 11:33:39 +1100 > David Gibson <[EMAIL PROTECTED]> wrote: > > > This patch alters the Ebony bootwrapper to use the new preferred > > method of using aliases to work out which MAC address to attach to > > which etherne

Re: Use aliases instead of linux,network-index on Ebony

2008-02-24 Thread Josh Boyer
On Mon, 25 Feb 2008 11:33:39 +1100 David Gibson <[EMAIL PROTECTED]> wrote: > This patch alters the Ebony bootwrapper to use the new preferred > method of using aliases to work out which MAC address to attach to > which ethernet device node, rather than the old method based on the > linux,network-i

Re: [PATCH] Add support for binary includes.

2008-02-24 Thread David Gibson
On Fri, Feb 22, 2008 at 12:12:25PM -0600, Jon Loeliger wrote: > David Gibson wrote: > > >> node { > >>prop = /incbin/("path/to/data"); > >> }; > >> > >> node { > >>prop = /incbin/("path/to/data", 8, 16); > >> }; > > > > I still dislike the syntax, but haven't thought of a better one yet. >

Use aliases instead of linux,network-index on Ebony

2008-02-24 Thread David Gibson
This patch alters the Ebony bootwrapper to use the new preferred method of using aliases to work out which MAC address to attach to which ethernet device node, rather than the old method based on the linux,network-index property. The now obsolete linux,network-index properties are removed from the

[PATCH] [POWERPC] [v2] Xilinx: hwicap: cleanup

2008-02-24 Thread Stephen Neuendorffer
Fix some missing __user tags and incorrect section tags. Convert semaphores to mutexes. Make probed_devices re-entrancy and error condition safe. Fix some backwards memcpys. Some other minor cleanups. Use kerneldoc format. [v2] __user char => char __user removed unused hwicap_command_capture Fixed

RE: [PATCH] Xilinx: hwicap: cleanup

2008-02-24 Thread Stephen Neuendorffer
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Grant Likely > Sent: Saturday, February 23, 2008 10:17 PM > To: Stephen Neuendorffer > Cc: linuxppc-dev@ozlabs.org; git-dev; [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: [PATCH] Xilinx: hwicap: cl

PIKA Warp Rev B

2008-02-24 Thread Sean MacLennan
For those who like seeing pictures of embedded boards, here's a pic of rev B of the PIKA taco, official name Warp. As always, this is a development version. I only put one module on so you could see the 440EP in all it's glory. The dangley thing in the front is a combination button (the metal p

Re: [PATCH 1/2][OF] Add of_device_is_disabled function

2008-02-24 Thread Nathan Lynch
Josh Boyer wrote: > On Sat, 23 Feb 2008 15:58:23 -0600 > Josh Boyer <[EMAIL PROTECTED]> wrote: > > > IEEE 1275 defined a standard "status" property to indicate the operational > > status of a device. The property has four possible values: okay, disabled, > > fail, fail-xxx. The absence of this p

Re: [PATCH] ps3: Fix "unlikely" incorrect usage

2008-02-24 Thread Geoff Levand
On 02/24/2008 12:06 AM, Samuel Tardieu wrote: > Fix unlikely(plug) == NO_IRQ into unlikely(plug == NO_IRQ). > > Signed-off-by: Samuel Tardieu <[EMAIL PROTECTED]> > --- > arch/powerpc/platforms/ps3/interrupt.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Thanks for the submission

Re: [PATCH] PowerPC 44x: add missing define TARGET_4xx to cuboot-taishan.c

2008-02-24 Thread Josh Boyer
On Sun, 24 Feb 2008 09:32:55 -0600 Josh Boyer <[EMAIL PROTECTED]> wrote: > On Thu, 21 Feb 2008 17:43:17 +0300 > Valentine Barshak <[EMAIL PROTECTED]> wrote: > > > In order to get the proper bd_info structure for PowerPC 440, > > both TARGET_4xx and TARGET_44x should be defined. > > Could you exp

Re: [PATCHv4 2.6.25] i2c: adds support for i2c bus on Freescale CPM1/CPM2 controllers

2008-02-24 Thread Olof Johansson
Hi, On Sun, Feb 24, 2008 at 04:16:30PM +0100, Jochen Friedrich wrote: > Hi Olof, > > >> 2. record the I2c name in the dts tree, either as seperate tag (like > >> linux,i2c-name="") > >>or as additional compatible entry (like compatible="...", > >> "linux,"). > > > > I have to say no on thi

Re: [PATCHv4 2.6.25] i2c: adds support for i2c bus on Freescale CPM1/CPM2 controllers

2008-02-24 Thread Jon Smirl
On 2/22/08, Jochen Friedrich <[EMAIL PROTECTED]> wrote: > Hi Jean, > > > >> +/* > >> + * Wait for patch from Jon Smirl > >> + * #include "powerpc-common.h" > >> + */ > > > > It doesn't make sense to merge this comment upstream. > > > I know you don't like the patch from Jon Smirl and you also

Re: [PATCH] PowerPC 44x: add missing define TARGET_4xx to cuboot-taishan.c

2008-02-24 Thread Josh Boyer
On Thu, 21 Feb 2008 17:43:17 +0300 Valentine Barshak <[EMAIL PROTECTED]> wrote: > In order to get the proper bd_info structure for PowerPC 440, > both TARGET_4xx and TARGET_44x should be defined. Could you explain what this adds or why it's needed in the changelog? Also, is this needed for other

Re: [PATCHv4 2.6.25] i2c: adds support for i2c bus on Freescale CPM1/CPM2 controllers

2008-02-24 Thread Jochen Friedrich
Hi Olof, >> 2. record the I2c name in the dts tree, either as seperate tag (like >> linux,i2c-name="") >>or as additional compatible entry (like compatible="...", >> "linux,"). > > I have to say no on this one. The device tree is not supposed to know > about how linux uses devices, there ar

Re: How to dynamically disable/enable CPU features?

2008-02-24 Thread Gerhard Pircher
Original-Nachricht > Datum: Sat, 23 Feb 2008 09:32:01 +1100 > Von: Benjamin Herrenschmidt <[EMAIL PROTECTED]> > An: Gerhard Pircher <[EMAIL PROTECTED]> > CC: Milton Miller <[EMAIL PROTECTED]>, linuxppc-dev@ozlabs.org > Betreff: Re: How to dynamically disable/enable CPU features?

[PATCH] ps3: Fix "unlikely" incorrect usage

2008-02-24 Thread Samuel Tardieu
Fix unlikely(plug) == NO_IRQ into unlikely(plug == NO_IRQ). Signed-off-by: Samuel Tardieu <[EMAIL PROTECTED]> --- arch/powerpc/platforms/ps3/interrupt.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/powerpc/platforms/ps3/interrupt.c b/arch/powerpc/platforms/ps3/i

Re: [PATCH] Add support for binary includes.

2008-02-24 Thread Jon Loeliger
David Gibson wrote: >> node { >> prop = /incbin/("path/to/data"); >> }; >> >> node { >> prop = /incbin/("path/to/data", 8, 16); >> }; > > I still dislike the syntax, but haven't thought of a better one yet. > There are some issues with the implementation too, but I've been a bit > too bu