Explorar o código

gemini: fix usb driver compilation on 3.18

Signed-off-by: Roman Yeryomin <[email protected]>

SVN-Revision: 45065
Felix Fietkau %!s(int64=10) %!d(string=hai) anos
pai
achega
c6a29d2528
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      target/linux/gemini/files/drivers/usb/host/ehci-fotg2.c

+ 2 - 2
target/linux/gemini/files/drivers/usb/host/ehci-fotg2.c

@@ -206,8 +206,8 @@ static int fotg2_ehci_probe(struct platform_device *pdev)
 	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_request_and_ioremap(&pdev->dev, res);
-	if (!hcd->regs) {
+	hcd->regs = devm_ioremap_resource(&pdev->dev, res);
+	if (IS_ERR(hcd->regs)) {
 		err = -ENOMEM;
 		err = -ENOMEM;
 		goto err_put_hcd;
 		goto err_put_hcd;
 	}
 	}