Revert "usb: host: ehci-msm: Use devm_ioremap_resource instead of devm_ioremap"
This reverts commit70843f623b
("usb: host: ehci-msm: Use devm_ioremap_resource instead of devm_ioremap") and commite507bf577e
("host: ehci-msm: remove duplicate check on resource"), because msm_otg and this driver are using same address space to access AHB mode and USB command registers. Signed-off-by: Ivan T. Ivanov <ivan.ivanov@linaro.org> Acked-by: Alan Stern <stern@rowland.harvard.edu> Acked-by: Vivek Gautam <gautam.vivek@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a5a356cee8
commit
bb304b71f8
1 changed files with 10 additions and 3 deletions
|
@ -88,13 +88,20 @@ static int ehci_msm_probe(struct platform_device *pdev)
|
||||||
}
|
}
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
hcd->regs = devm_ioremap_resource(&pdev->dev, res);
|
if (!res) {
|
||||||
if (IS_ERR(hcd->regs)) {
|
dev_err(&pdev->dev, "Unable to get memory resource\n");
|
||||||
ret = PTR_ERR(hcd->regs);
|
ret = -ENODEV;
|
||||||
goto put_hcd;
|
goto put_hcd;
|
||||||
}
|
}
|
||||||
|
|
||||||
hcd->rsrc_start = res->start;
|
hcd->rsrc_start = res->start;
|
||||||
hcd->rsrc_len = resource_size(res);
|
hcd->rsrc_len = resource_size(res);
|
||||||
|
hcd->regs = devm_ioremap(&pdev->dev, hcd->rsrc_start, hcd->rsrc_len);
|
||||||
|
if (!hcd->regs) {
|
||||||
|
dev_err(&pdev->dev, "ioremap failed\n");
|
||||||
|
ret = -ENOMEM;
|
||||||
|
goto put_hcd;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* OTG driver takes care of PHY initialization, clock management,
|
* OTG driver takes care of PHY initialization, clock management,
|
||||||
|
|
Loading…
Add table
Reference in a new issue