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

Commit aaa14fe3 authored by Varka Bhadram's avatar Varka Bhadram Committed by David S. Miller
Browse files

ethernet: samsung: sxgbe: remove unnecessary check



devm_ioremap_resource checks platform_get_resource() return value.
We can remove the duplicate check here.

Signed-off-by: default avatarVarka Bhadram <varkab@cdac.in>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c960804f
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -90,9 +90,6 @@ static int sxgbe_platform_probe(struct platform_device *pdev)

	/* Get memory resource */
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!res)
		goto err_out;

	addr = devm_ioremap_resource(dev, res);
	if (IS_ERR(addr))
		return PTR_ERR(addr);