Re: [PATCH v3] Allow device tree to be modified by additonal device tree sections

2010-02-26 Thread Jon Loeliger
Oops, I was hoping to make a few tweaks to that before it was applied. Oh well, it was basically only more thorough testcases, so that can be added later. Sorry -- I had no idea about that. Follow up patches welcome, of course! jdl ___

[PATCH] Add merging of labelled subnodes. This patch allows the following

2010-02-26 Thread Grant Likely
syntax: / { child { label: subchild { }; }; }; label { prop = value; }; which will result in the following tree: / { child { label: subchild { prop = value; }; }; };

[PATCH] of: add bus-number specification to spi_mpc8xxx

2010-02-26 Thread Ernst Schwab
From: Ernst Schwab esch...@online.de Added devicetree parsing for SPI bus number. If no bus number is specified, a dynamically assigned bus number will be used (typically 32766). Signed-off-by: Ernst Schwab esch...@online.de --- diff -upr a/Documentation/powerpc/dts-bindings/fsl/spi.txt

[patch] of: check for IS_ERR()

2010-02-26 Thread Dan Carpenter
get_phy_device() can return an ERR_PTR() Signed-off-by: Dan Carpenter erro...@gmail.com --- I don't have a cross compile environment set up so I can't even compile test this. :/ But err.h is included so it should be OK. diff --git a/drivers/of/of_mdio.c b/drivers/of/of_mdio.c index