Commit 09f0607d authored by Felipe Balbi's avatar Felipe Balbi

usb: host: omap: switch to platform_get_resource_byname

now that we have names on all memory bases, we can
switch to use platform_get_resource_byname() which
will make it simpler when we move to a setup where
OHCI and EHCI on OMAP play well together.
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent a9031e5f
...@@ -947,7 +947,7 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev) ...@@ -947,7 +947,7 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev)
omap->ehci = hcd_to_ehci(hcd); omap->ehci = hcd_to_ehci(hcd);
omap->ehci->sbrn = 0x20; omap->ehci->sbrn = 0x20;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ehci");
hcd->rsrc_start = res->start; hcd->rsrc_start = res->start;
hcd->rsrc_len = resource_size(res); hcd->rsrc_len = resource_size(res);
...@@ -963,7 +963,7 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev) ...@@ -963,7 +963,7 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev)
omap->ehci->caps = hcd->regs; omap->ehci->caps = hcd->regs;
omap->ehci_base = hcd->regs; omap->ehci_base = hcd->regs;
res = platform_get_resource(pdev, IORESOURCE_MEM, 1); res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "uhh");
omap->uhh_base = ioremap(res->start, resource_size(res)); omap->uhh_base = ioremap(res->start, resource_size(res));
if (!omap->uhh_base) { if (!omap->uhh_base) {
dev_err(&pdev->dev, "UHH ioremap failed\n"); dev_err(&pdev->dev, "UHH ioremap failed\n");
...@@ -971,7 +971,7 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev) ...@@ -971,7 +971,7 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev)
goto err_uhh_ioremap; goto err_uhh_ioremap;
} }
res = platform_get_resource(pdev, IORESOURCE_MEM, 2); res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "tll");
omap->tll_base = ioremap(res->start, resource_size(res)); omap->tll_base = ioremap(res->start, resource_size(res));
if (!omap->tll_base) { if (!omap->tll_base) {
dev_err(&pdev->dev, "TLL ioremap failed\n"); dev_err(&pdev->dev, "TLL ioremap failed\n");
......
...@@ -618,7 +618,7 @@ static int __devinit ohci_hcd_omap3_probe(struct platform_device *pdev) ...@@ -618,7 +618,7 @@ static int __devinit ohci_hcd_omap3_probe(struct platform_device *pdev)
omap->es2_compatibility = pdata->es2_compatibility; omap->es2_compatibility = pdata->es2_compatibility;
omap->ohci = hcd_to_ohci(hcd); omap->ohci = hcd_to_ohci(hcd);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ohci");
hcd->rsrc_start = res->start; hcd->rsrc_start = res->start;
hcd->rsrc_len = resource_size(res); hcd->rsrc_len = resource_size(res);
...@@ -630,7 +630,7 @@ static int __devinit ohci_hcd_omap3_probe(struct platform_device *pdev) ...@@ -630,7 +630,7 @@ static int __devinit ohci_hcd_omap3_probe(struct platform_device *pdev)
goto err_ioremap; goto err_ioremap;
} }
res = platform_get_resource(pdev, IORESOURCE_MEM, 1); res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "uhh");
omap->uhh_base = ioremap(res->start, resource_size(res)); omap->uhh_base = ioremap(res->start, resource_size(res));
if (!omap->uhh_base) { if (!omap->uhh_base) {
dev_err(&pdev->dev, "UHH ioremap failed\n"); dev_err(&pdev->dev, "UHH ioremap failed\n");
...@@ -638,7 +638,7 @@ static int __devinit ohci_hcd_omap3_probe(struct platform_device *pdev) ...@@ -638,7 +638,7 @@ static int __devinit ohci_hcd_omap3_probe(struct platform_device *pdev)
goto err_uhh_ioremap; goto err_uhh_ioremap;
} }
res = platform_get_resource(pdev, IORESOURCE_MEM, 2); res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "tll");
omap->tll_base = ioremap(res->start, resource_size(res)); omap->tll_base = ioremap(res->start, resource_size(res));
if (!omap->tll_base) { if (!omap->tll_base) {
dev_err(&pdev->dev, "TLL ioremap failed\n"); dev_err(&pdev->dev, "TLL ioremap failed\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment