diff options
author | Christian Engelmayer <cengelma@gmx.at> | 2014-02-08 21:11:17 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-02-10 07:06:14 +0400 |
commit | 4e6ecd442db707cd29cae1774dc951855d82df5e (patch) | |
tree | 86ec3049411c704e2e56f8591396fd3eb19efee2 | |
parent | 946c032e5a53992ea45e062ecb08670ba39b99e3 (diff) | |
download | linux-4e6ecd442db707cd29cae1774dc951855d82df5e.tar.xz |
3c59x: Remove unused pointer in vortex_eisa_cleanup()
Remove unused network device private data pointer 'vp' in function
vortex_eisa_cleanup(). Detected by Coverity: CID 139826.
Signed-off-by: Christian Engelmayer <cengelma@gmx.at>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/3com/3c59x.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/ethernet/3com/3c59x.c b/drivers/net/ethernet/3com/3c59x.c index 0f4241c6e97e..238ccea965c8 100644 --- a/drivers/net/ethernet/3com/3c59x.c +++ b/drivers/net/ethernet/3com/3c59x.c @@ -3294,7 +3294,6 @@ static int __init vortex_init(void) static void __exit vortex_eisa_cleanup(void) { - struct vortex_private *vp; void __iomem *ioaddr; #ifdef CONFIG_EISA @@ -3303,7 +3302,6 @@ static void __exit vortex_eisa_cleanup(void) #endif if (compaq_net_device) { - vp = netdev_priv(compaq_net_device); ioaddr = ioport_map(compaq_net_device->base_addr, VORTEX_TOTAL_SIZE); |