|
@@ -86,14 +86,14 @@ static int uhci_hcd_platform_probe(struct platform_device *pdev)
|
|
|
return -ENOMEM;
|
|
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
|
- hcd->rsrc_start = res->start;
|
|
|
- hcd->rsrc_len = resource_size(res);
|
|
|
-
|
|
|
hcd->regs = devm_ioremap_resource(&pdev->dev, res);
|
|
|
if (IS_ERR(hcd->regs)) {
|
|
|
ret = PTR_ERR(hcd->regs);
|
|
|
goto err_rmr;
|
|
|
}
|
|
|
+ hcd->rsrc_start = res->start;
|
|
|
+ hcd->rsrc_len = resource_size(res);
|
|
|
+
|
|
|
uhci = hcd_to_uhci(hcd);
|
|
|
|
|
|
uhci->regs = hcd->regs;
|