Commit e48cefb9 authored by Tom Rix's avatar Tom Rix Committed by Jakub Kicinski

net: ethernet: 8390: axnet_cs: remove unused xfer_count variable

clang with W=1 reports
drivers/net/ethernet/8390/axnet_cs.c:653:9: error: variable
  'xfer_count' set but not used [-Werror,-Wunused-but-set-variable]
    int xfer_count = count;
        ^
This variable is not used so remove it.
Signed-off-by: default avatarTom Rix <trix@redhat.com>
Reviewed-by: default avatarSimon Horman <simon.horman@corigine.com>
Link: https://lore.kernel.org/r/20230327235423.1777590-1-trix@redhat.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent cdeccd13
...@@ -650,7 +650,6 @@ static void block_input(struct net_device *dev, int count, ...@@ -650,7 +650,6 @@ static void block_input(struct net_device *dev, int count,
{ {
unsigned int nic_base = dev->base_addr; unsigned int nic_base = dev->base_addr;
struct ei_device *ei_local = netdev_priv(dev); struct ei_device *ei_local = netdev_priv(dev);
int xfer_count = count;
char *buf = skb->data; char *buf = skb->data;
if ((netif_msg_rx_status(ei_local)) && (count != 4)) if ((netif_msg_rx_status(ei_local)) && (count != 4))
...@@ -662,9 +661,7 @@ static void block_input(struct net_device *dev, int count, ...@@ -662,9 +661,7 @@ static void block_input(struct net_device *dev, int count,
insw(nic_base + AXNET_DATAPORT,buf,count>>1); insw(nic_base + AXNET_DATAPORT,buf,count>>1);
if (count & 0x01) { if (count & 0x01) {
buf[count-1] = inb(nic_base + AXNET_DATAPORT); buf[count-1] = inb(nic_base + AXNET_DATAPORT);
xfer_count++;
} }
} }
/*====================================================================*/ /*====================================================================*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment