aboutsummaryrefslogtreecommitdiff
path: root/drivers/usb/host/xhci-rockchip.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-05-18 20:08:57 -0600
committerSimon Glass <sjg@chromium.org>2017-06-01 07:03:06 -0600
commit911f3aef357ca02ac0d06fdce6a7a3081594f272 (patch)
tree02a77f43e3a9437c56d9d0c4b81dcedace5afc72 /drivers/usb/host/xhci-rockchip.c
parent3af86a4e23bba49b573aabeb83bb41c199686ef6 (diff)
downloadu-boot-911f3aef357ca02ac0d06fdce6a7a3081594f272.zip
u-boot-911f3aef357ca02ac0d06fdce6a7a3081594f272.tar.gz
u-boot-911f3aef357ca02ac0d06fdce6a7a3081594f272.tar.bz2
dm: core: Rename of_device_is_compatible()
The of_ prefix conflicts with the livetree version of this function. Rename it to avoid problems when we add livetree support. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/usb/host/xhci-rockchip.c')
-rw-r--r--drivers/usb/host/xhci-rockchip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/xhci-rockchip.c b/drivers/usb/host/xhci-rockchip.c
index 5e7130f..38e1c68 100644
--- a/drivers/usb/host/xhci-rockchip.c
+++ b/drivers/usb/host/xhci-rockchip.c
@@ -55,7 +55,7 @@ static int xhci_usb_ofdata_to_platdata(struct udevice *dev)
/* Get the base address for usbphy from the device node */
for (device_find_first_child(dev, &child); child;
device_find_next_child(&child)) {
- if (!of_device_is_compatible(child, "rockchip,rk3399-usb3-phy"))
+ if (!device_is_compatible(child, "rockchip,rk3399-usb3-phy"))
continue;
plat->phy_base = devfdt_get_addr(child);
break;