Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 687f16b8 authored by Varka Bhadram's avatar Varka Bhadram Committed by Felipe Balbi
Browse files

usb: renesas_usbhs: common: remove duplicate check on resource



Sanity check on resource happening with devm_ioremap_resource().

Signed-off-by: default avatarVarka Bhadram <varkab@cdac.in>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 4d852011
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -496,9 +496,8 @@ static int usbhs_probe(struct platform_device *pdev)
	}

	/* platform data */
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (!res || !irq_res) {
	if (!irq_res) {
		dev_err(&pdev->dev, "Not enough Renesas USB platform resources.\n");
		return -ENODEV;
	}
@@ -508,6 +507,7 @@ static int usbhs_probe(struct platform_device *pdev)
	if (!priv)
		return -ENOMEM;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	priv->base = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(priv->base))
		return PTR_ERR(priv->base);