ftgmac100: Remove "enabled" flags

It's not used in any meaningful way

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Benjamin Herrenschmidt 2017-04-05 12:28:44 +10:00 committed by David S. Miller
parent 831fb3388c
commit 8396e1cb0b

View File

@ -84,7 +84,6 @@ struct ftgmac100 {
/* Misc */
int int_mask_all;
bool enabled;
};
static int ftgmac100_alloc_rx_page(struct ftgmac100 *priv,
@ -1126,8 +1125,6 @@ static int ftgmac100_open(struct net_device *netdev)
goto err_ncsi;
}
priv->enabled = true;
return 0;
err_ncsi:
@ -1146,11 +1143,7 @@ static int ftgmac100_stop(struct net_device *netdev)
{
struct ftgmac100 *priv = netdev_priv(netdev);
if (!priv->enabled)
return 0;
/* disable all interrupts */
priv->enabled = false;
iowrite32(0, priv->base + FTGMAC100_OFFSET_IER);
netif_stop_queue(netdev);