mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 15:10:38 +00:00
usb: phy: am335x: convert to devm_platform_ioremap_resource_byname
Use devm_platform_ioremap_resource_byname() to simplify code Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com> Link: https://lore.kernel.org/r/1595404275-8449-2-git-send-email-chunfeng.yun@mediatek.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5ad91812ea
commit
6ce7b97cfa
@ -149,7 +149,6 @@ EXPORT_SYMBOL_GPL(am335x_get_phy_control);
|
|||||||
|
|
||||||
static int am335x_control_usb_probe(struct platform_device *pdev)
|
static int am335x_control_usb_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct resource *res;
|
|
||||||
struct am335x_control_usb *ctrl_usb;
|
struct am335x_control_usb *ctrl_usb;
|
||||||
const struct of_device_id *of_id;
|
const struct of_device_id *of_id;
|
||||||
const struct phy_control *phy_ctrl;
|
const struct phy_control *phy_ctrl;
|
||||||
@ -166,13 +165,11 @@ static int am335x_control_usb_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
ctrl_usb->dev = &pdev->dev;
|
ctrl_usb->dev = &pdev->dev;
|
||||||
|
|
||||||
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "phy_ctrl");
|
ctrl_usb->phy_reg = devm_platform_ioremap_resource_byname(pdev, "phy_ctrl");
|
||||||
ctrl_usb->phy_reg = devm_ioremap_resource(&pdev->dev, res);
|
|
||||||
if (IS_ERR(ctrl_usb->phy_reg))
|
if (IS_ERR(ctrl_usb->phy_reg))
|
||||||
return PTR_ERR(ctrl_usb->phy_reg);
|
return PTR_ERR(ctrl_usb->phy_reg);
|
||||||
|
|
||||||
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "wakeup");
|
ctrl_usb->wkup = devm_platform_ioremap_resource_byname(pdev, "wakeup");
|
||||||
ctrl_usb->wkup = devm_ioremap_resource(&pdev->dev, res);
|
|
||||||
if (IS_ERR(ctrl_usb->wkup))
|
if (IS_ERR(ctrl_usb->wkup))
|
||||||
return PTR_ERR(ctrl_usb->wkup);
|
return PTR_ERR(ctrl_usb->wkup);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user