gianfar: fix obviously wrong #ifdef CONFIG_GFAR_NAPI placement
Erroneous #ifdef introduced by 293c851339
causing NAPI-less ethernet malfunctioning.
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
f860f49ee2
commit
db0e8e3f71
@ -956,10 +956,12 @@ static int gfar_enet_open(struct net_device *dev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
err = startup_gfar(dev);
|
err = startup_gfar(dev);
|
||||||
if (err)
|
if (err) {
|
||||||
#ifdef CONFIG_GFAR_NAPI
|
#ifdef CONFIG_GFAR_NAPI
|
||||||
napi_disable(&priv->napi);
|
napi_disable(&priv->napi);
|
||||||
#endif
|
#endif
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
netif_start_queue(dev);
|
netif_start_queue(dev);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user