Commit 320c3fce authored by Axel Lin's avatar Axel Lin Committed by Kishon Vijay Abraham I
Browse files

phy: miphy28lp: Use PTR_ERR_OR_ZERO



PTR_ERR_OR_ZERO simplifies the code.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Acked-by: default avatarGabriel <Fernandez&lt;gabriel.fernandez@linaro.org>
Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
parent f8f55393
Loading
Loading
Loading
Loading
+1 −4
Original line number Original line Diff line number Diff line
@@ -1258,10 +1258,7 @@ static int miphy28lp_probe(struct platform_device *pdev)
	}
	}


	provider = devm_of_phy_provider_register(&pdev->dev, miphy28lp_xlate);
	provider = devm_of_phy_provider_register(&pdev->dev, miphy28lp_xlate);
	if (IS_ERR(provider))
	return PTR_ERR_OR_ZERO(provider);
		return PTR_ERR(provider);

	return 0;
}
}


static const struct of_device_id miphy28lp_of_match[] = {
static const struct of_device_id miphy28lp_of_match[] = {