Merge branch 'next-devicetree' of git://git.secretlab.ca/git/linux-2.6
* 'next-devicetree' of git://git.secretlab.ca/git/linux-2.6: (29 commits) of/flattree: forward declare struct device_node in of_fdt.h ipmi: explicitly include of_address.h and of_irq.h sparc: explicitly cast negative phandle checks to s32 powerpc/405: Fix missing #{address,size}-cells in i2c node powerpc/5200: dts: refactor dts files powerpc/5200: dts: Change combatible strings on localbus powerpc/5200: dts: remove unused properties powerpc/5200: dts: rename nodes to prepare for refactoring dts files of/flattree: Update dtc to current mainline. of/device: Don't register disabled devices powerpc/dts: fix syntax bugs in bluestone.dts of: Fixes for OF probing on little endian systems of: make drivers depend on CONFIG_OF instead of CONFIG_PPC_OF of/flattree: Add of_flat_dt_match() helper function of_serial: explicitly include of_irq.h of/flattree: Refactor unflatten_device_tree and add fdt_unflatten_tree of/flattree: Reorder unflatten_dt_node of/flattree: Refactor unflatten_dt_node of/flattree: Add non-boottime device tree functions of/flattree: Add Kconfig for EARLY_FLATTREE ... Fix up trivial conflict in arch/sparc/prom/tree_32.c as per Grant.
This commit is contained in:
@@ -40,11 +40,11 @@ phandle prom_getchild(phandle node)
|
||||
{
|
||||
phandle cnode;
|
||||
|
||||
if (node == -1)
|
||||
if ((s32)node == -1)
|
||||
return 0;
|
||||
|
||||
cnode = __prom_getchild(node);
|
||||
if (cnode == 0 || cnode == -1)
|
||||
if (cnode == 0 || (s32)cnode == -1)
|
||||
return 0;
|
||||
|
||||
return cnode;
|
||||
@@ -72,11 +72,11 @@ phandle prom_getsibling(phandle node)
|
||||
{
|
||||
phandle sibnode;
|
||||
|
||||
if (node == -1)
|
||||
if ((s32)node == -1)
|
||||
return 0;
|
||||
|
||||
sibnode = __prom_getsibling(node);
|
||||
if (sibnode == 0 || sibnode == -1)
|
||||
if (sibnode == 0 || (s32)sibnode == -1)
|
||||
return 0;
|
||||
|
||||
return sibnode;
|
||||
@@ -219,7 +219,7 @@ static char *__prom_nextprop(phandle node, char * oprop)
|
||||
*/
|
||||
char *prom_nextprop(phandle node, char *oprop, char *buffer)
|
||||
{
|
||||
if (node == 0 || node == -1)
|
||||
if (node == 0 || (s32)node == -1)
|
||||
return "";
|
||||
|
||||
return __prom_nextprop(node, oprop);
|
||||
@@ -253,7 +253,7 @@ phandle prom_finddevice(char *name)
|
||||
if (d != s + 3 && (!*d || *d == '/')
|
||||
&& d <= s + 3 + 8) {
|
||||
node2 = node;
|
||||
while (node2 && node2 != -1) {
|
||||
while (node2 && (s32)node2 != -1) {
|
||||
if (prom_getproperty (node2, "reg", (char *)reg, sizeof (reg)) > 0) {
|
||||
if (which_io == reg[0].which_io && phys_addr == reg[0].phys_addr) {
|
||||
node = node2;
|
||||
@@ -261,7 +261,7 @@ phandle prom_finddevice(char *name)
|
||||
}
|
||||
}
|
||||
node2 = prom_getsibling(node2);
|
||||
if (!node2 || node2 == -1)
|
||||
if (!node2 || (s32)node2 == -1)
|
||||
break;
|
||||
node2 = prom_searchsiblings(prom_getsibling(node2), nbuf);
|
||||
}
|
||||
@@ -303,6 +303,7 @@ phandle prom_inst2pkg(int inst)
|
||||
node = (*romvec->pv_v2devops.v2_inst2pkg)(inst);
|
||||
restore_current();
|
||||
spin_unlock_irqrestore(&prom_lock, flags);
|
||||
if (node == -1) return 0;
|
||||
if ((s32)node == -1)
|
||||
return 0;
|
||||
return node;
|
||||
}
|
||||
|
Reference in New Issue
Block a user