usb: chipidea: i.MX: use devm_usb_get_phy_by_phandle to get phy
This patch converts the driver to use devm_usb_get_phy_by_phandle which makes the code smaller and a bit simpler. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
0404ae0351
Коммит
ea1418b5f1
|
@ -28,7 +28,6 @@
|
||||||
((struct usb_phy *)platform_get_drvdata(pdev))
|
((struct usb_phy *)platform_get_drvdata(pdev))
|
||||||
|
|
||||||
struct ci13xxx_imx_data {
|
struct ci13xxx_imx_data {
|
||||||
struct device_node *phy_np;
|
|
||||||
struct usb_phy *phy;
|
struct usb_phy *phy;
|
||||||
struct platform_device *ci_pdev;
|
struct platform_device *ci_pdev;
|
||||||
struct clk *clk;
|
struct clk *clk;
|
||||||
|
@ -97,9 +96,9 @@ static int ci13xxx_imx_probe(struct platform_device *pdev)
|
||||||
CI13XXX_PULLUP_ON_VBUS |
|
CI13XXX_PULLUP_ON_VBUS |
|
||||||
CI13XXX_DISABLE_STREAMING,
|
CI13XXX_DISABLE_STREAMING,
|
||||||
};
|
};
|
||||||
struct platform_device *phy_pdev;
|
|
||||||
struct resource *res;
|
struct resource *res;
|
||||||
int ret;
|
int ret;
|
||||||
|
struct usb_phy *phy;
|
||||||
|
|
||||||
if (of_find_property(pdev->dev.of_node, "fsl,usbmisc", NULL)
|
if (of_find_property(pdev->dev.of_node, "fsl,usbmisc", NULL)
|
||||||
&& !usbmisc_ops)
|
&& !usbmisc_ops)
|
||||||
|
@ -131,18 +130,16 @@ static int ci13xxx_imx_probe(struct platform_device *pdev)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
data->phy_np = of_parse_phandle(pdev->dev.of_node, "fsl,usbphy", 0);
|
phy = devm_usb_get_phy_by_phandle(&pdev->dev, "fsl,usbphy", 0);
|
||||||
if (data->phy_np) {
|
if (!IS_ERR(phy)) {
|
||||||
phy_pdev = of_find_device_by_node(data->phy_np);
|
ret = usb_phy_init(phy);
|
||||||
if (phy_pdev) {
|
if (ret) {
|
||||||
struct usb_phy *phy;
|
dev_err(&pdev->dev, "unable to init phy: %d\n", ret);
|
||||||
phy = pdev_to_phy(phy_pdev);
|
goto err_clk;
|
||||||
if (phy &&
|
|
||||||
try_module_get(phy_pdev->dev.driver->owner)) {
|
|
||||||
usb_phy_init(phy);
|
|
||||||
data->phy = phy;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
} else if (PTR_ERR(phy) == -EPROBE_DEFER) {
|
||||||
|
ret = -EPROBE_DEFER;
|
||||||
|
goto err_clk;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* we only support host now, so enable vbus here */
|
/* we only support host now, so enable vbus here */
|
||||||
|
@ -153,7 +150,7 @@ static int ci13xxx_imx_probe(struct platform_device *pdev)
|
||||||
dev_err(&pdev->dev,
|
dev_err(&pdev->dev,
|
||||||
"Failed to enable vbus regulator, err=%d\n",
|
"Failed to enable vbus regulator, err=%d\n",
|
||||||
ret);
|
ret);
|
||||||
goto put_np;
|
goto err_clk;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
data->reg_vbus = NULL;
|
data->reg_vbus = NULL;
|
||||||
|
@ -207,9 +204,7 @@ disable_device:
|
||||||
err:
|
err:
|
||||||
if (data->reg_vbus)
|
if (data->reg_vbus)
|
||||||
regulator_disable(data->reg_vbus);
|
regulator_disable(data->reg_vbus);
|
||||||
put_np:
|
err_clk:
|
||||||
if (data->phy_np)
|
|
||||||
of_node_put(data->phy_np);
|
|
||||||
clk_disable_unprepare(data->clk);
|
clk_disable_unprepare(data->clk);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -229,9 +224,6 @@ static int ci13xxx_imx_remove(struct platform_device *pdev)
|
||||||
module_put(data->phy->dev->driver->owner);
|
module_put(data->phy->dev->driver->owner);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data->phy_np)
|
|
||||||
of_node_put(data->phy_np);
|
|
||||||
|
|
||||||
clk_disable_unprepare(data->clk);
|
clk_disable_unprepare(data->clk);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче