diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-05-31 06:57:07 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-06-01 05:56:39 -0400 |
commit | 69bd4ae5dc1ddb3c01e7668c7fd088904082a70c (patch) | |
tree | 7a7320fa3caab7254a6e675e2269bf334cdce4f4 /drivers/net/cpmac.c | |
parent | d1a277c584d0862dbf51991baea947ea5f2ce6bf (diff) |
cpmac: remove unused variable.
This patch removes the unused variables in
cpmac_hw_error, cpmac_tx_timeout and cpmac_probe.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/cpmac.c')
-rw-r--r-- | drivers/net/cpmac.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/cpmac.c b/drivers/net/cpmac.c index cfb4198b6776..08e2f67adfb4 100644 --- a/drivers/net/cpmac.c +++ b/drivers/net/cpmac.c | |||
@@ -731,7 +731,6 @@ static void cpmac_clear_tx(struct net_device *dev) | |||
731 | 731 | ||
732 | static void cpmac_hw_error(struct work_struct *work) | 732 | static void cpmac_hw_error(struct work_struct *work) |
733 | { | 733 | { |
734 | int i; | ||
735 | struct cpmac_priv *priv = | 734 | struct cpmac_priv *priv = |
736 | container_of(work, struct cpmac_priv, reset_work); | 735 | container_of(work, struct cpmac_priv, reset_work); |
737 | 736 | ||
@@ -818,7 +817,6 @@ static irqreturn_t cpmac_irq(int irq, void *dev_id) | |||
818 | 817 | ||
819 | static void cpmac_tx_timeout(struct net_device *dev) | 818 | static void cpmac_tx_timeout(struct net_device *dev) |
820 | { | 819 | { |
821 | int i; | ||
822 | struct cpmac_priv *priv = netdev_priv(dev); | 820 | struct cpmac_priv *priv = netdev_priv(dev); |
823 | 821 | ||
824 | spin_lock(&priv->lock); | 822 | spin_lock(&priv->lock); |
@@ -1110,7 +1108,7 @@ static int external_switch; | |||
1110 | 1108 | ||
1111 | static int __devinit cpmac_probe(struct platform_device *pdev) | 1109 | static int __devinit cpmac_probe(struct platform_device *pdev) |
1112 | { | 1110 | { |
1113 | int rc, phy_id, i; | 1111 | int rc, phy_id; |
1114 | char *mdio_bus_id = "0"; | 1112 | char *mdio_bus_id = "0"; |
1115 | struct resource *mem; | 1113 | struct resource *mem; |
1116 | struct cpmac_priv *priv; | 1114 | struct cpmac_priv *priv; |