mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 13:41:55 +00:00
powerpc/prom: Use of_get_next_parent() in of_get_ibm_chip_id()
Use of_get_next_parent() to simplifiy the logic in of_get_ibm_chip_id(). Original-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
parent
f755ecfb8c
commit
16c1d60626
@ -784,7 +784,6 @@ int of_get_ibm_chip_id(struct device_node *np)
|
||||
{
|
||||
of_node_get(np);
|
||||
while (np) {
|
||||
struct device_node *old = np;
|
||||
u32 chip_id;
|
||||
|
||||
/*
|
||||
@ -795,8 +794,8 @@ int of_get_ibm_chip_id(struct device_node *np)
|
||||
of_node_put(np);
|
||||
return chip_id;
|
||||
}
|
||||
np = of_get_parent(np);
|
||||
of_node_put(old);
|
||||
|
||||
np = of_get_next_parent(np);
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user