Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux...
[firefly-linux-kernel-4.4.55.git] / drivers / usb / host / xhci-plat.c
index 646300cbe5f75d34fabf3fd4d13d1100c52e97c0..08d402b15482d936ca36d6d20cc381d8279a35a2 100644 (file)
@@ -83,9 +83,6 @@ static int xhci_plat_probe(struct platform_device *pdev)
        if (irq < 0)
                return -ENODEV;
 
-       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       if (!res)
-               return -ENODEV;
 
        if (of_device_is_compatible(pdev->dev.of_node,
                                    "marvell,armada-375-xhci") ||
@@ -109,15 +106,16 @@ static int xhci_plat_probe(struct platform_device *pdev)
        if (!hcd)
                return -ENOMEM;
 
-       hcd->rsrc_start = res->start;
-       hcd->rsrc_len = resource_size(res);
-
+       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
        hcd->regs = devm_ioremap_resource(&pdev->dev, res);
        if (IS_ERR(hcd->regs)) {
                ret = PTR_ERR(hcd->regs);
                goto put_hcd;
        }
 
+       hcd->rsrc_start = res->start;
+       hcd->rsrc_len = resource_size(res);
+
        /*
         * Not all platforms have a clk so it is not an error if the
         * clock does not exists.