Lines Matching defs:phy_base
459 struct rockchip_usb_phy_base *phy_base;
465 phy_base = devm_kzalloc(dev, sizeof(*phy_base), GFP_KERNEL);
466 if (!phy_base)
475 phy_base->pdata = match->data;
477 phy_base->dev = dev;
478 phy_base->reg_base = ERR_PTR(-ENODEV);
480 phy_base->reg_base = syscon_node_to_regmap(
482 if (IS_ERR(phy_base->reg_base))
483 phy_base->reg_base = syscon_regmap_lookup_by_phandle(
485 if (IS_ERR(phy_base->reg_base)) {
487 return PTR_ERR(phy_base->reg_base);
491 err = rockchip_usb_phy_init(phy_base, child);