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

Commit 751c2e47 authored by Francois Romieu's avatar Francois Romieu Committed by Jeff Garzik
Browse files

korina: fix misplaced return statement



The driver takes the error unwind path without condition.

Signed-off-by: default avatarFrancois Romieu <romieu@fr.zoreil.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent d753d824
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1031,6 +1031,8 @@ static int korina_open(struct net_device *dev)
		    dev->name, lp->und_irq);
		goto err_free_ovr_irq;
	}
out:
	return ret;

err_free_ovr_irq:
	free_irq(lp->ovr_irq, dev);
@@ -1041,8 +1043,6 @@ err_free_rx_irq:
err_release:
	korina_free_ring(dev);
	goto out;
out:
	return ret;
}

static int korina_close(struct net_device *dev)