From: Dan Carpenter Date: Tue, 24 Aug 2010 02:01:05 +0000 (+0000) Subject: plip: remove superflous return X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=884c06f4777c598ea7bf4fbc7557ff2fca066f63;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git plip: remove superflous return This return isn't reachable and it obscures the goto on the line before. Signed-off-by: Dan Carpenter Signed-off-by: David S. Miller --- diff --git a/drivers/net/plip.c b/drivers/net/plip.c index ec0349e84a8a..7e82a82422cf 100644 --- a/drivers/net/plip.c +++ b/drivers/net/plip.c @@ -1279,7 +1279,6 @@ static void plip_attach (struct parport *port) if (!nl->pardev) { printk(KERN_ERR "%s: parport_register failed\n", name); goto err_free_dev; - return; } plip_init_netdev(dev);