diff options
Diffstat (limited to 'drivers/usb/common/ulpi.c')
-rw-r--r-- | drivers/usb/common/ulpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/common/ulpi.c b/drivers/usb/common/ulpi.c index 8b351444cc40..9a2ab6751a23 100644 --- a/drivers/usb/common/ulpi.c +++ b/drivers/usb/common/ulpi.c | |||
@@ -180,9 +180,9 @@ static int ulpi_of_register(struct ulpi *ulpi) | |||
180 | /* Find a ulpi bus underneath the parent or the grandparent */ | 180 | /* Find a ulpi bus underneath the parent or the grandparent */ |
181 | parent = ulpi->dev.parent; | 181 | parent = ulpi->dev.parent; |
182 | if (parent->of_node) | 182 | if (parent->of_node) |
183 | np = of_find_node_by_name(parent->of_node, "ulpi"); | 183 | np = of_get_child_by_name(parent->of_node, "ulpi"); |
184 | else if (parent->parent && parent->parent->of_node) | 184 | else if (parent->parent && parent->parent->of_node) |
185 | np = of_find_node_by_name(parent->parent->of_node, "ulpi"); | 185 | np = of_get_child_by_name(parent->parent->of_node, "ulpi"); |
186 | if (!np) | 186 | if (!np) |
187 | return 0; | 187 | return 0; |
188 | 188 | ||