* [PATCH v5 1/6] net: sh_eth: remove unnecessary function
@ 2012-05-29 8:14 Shimoda, Yoshihiro
2012-05-29 8:17 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: Shimoda, Yoshihiro @ 2012-05-29 8:14 UTC (permalink / raw)
To: netdev; +Cc: SH-Linux
The sh_eth_timer() called mod_timer() for itself.
So, this patch removes the function.
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
---
about v5:
- this patch is the same as v3
drivers/net/ethernet/renesas/sh_eth.c | 22 ----------------------
drivers/net/ethernet/renesas/sh_eth.h | 1 -
2 files changed, 0 insertions(+), 23 deletions(-)
diff --git a/drivers/net/ethernet/renesas/sh_eth.c b/drivers/net/ethernet/renesas/sh_eth.c
index be3c221..c35084a 100644
--- a/drivers/net/ethernet/renesas/sh_eth.c
+++ b/drivers/net/ethernet/renesas/sh_eth.c
@@ -1289,14 +1289,6 @@ other_irq:
return ret;
}
-static void sh_eth_timer(unsigned long data)
-{
- struct net_device *ndev = (struct net_device *)data;
- struct sh_eth_private *mdp = netdev_priv(ndev);
-
- mod_timer(&mdp->timer, jiffies + (10 * HZ));
-}
-
/* PHY state control function */
static void sh_eth_adjust_link(struct net_device *ndev)
{
@@ -1544,11 +1536,6 @@ static int sh_eth_open(struct net_device *ndev)
if (ret)
goto out_free_irq;
- /* Set the timer to check for link beat. */
- init_timer(&mdp->timer);
- mdp->timer.expires = (jiffies + (24 * HZ)) / 10;/* 2.4 sec. */
- setup_timer(&mdp->timer, sh_eth_timer, (unsigned long)ndev);
-
return ret;
out_free_irq:
@@ -1573,9 +1560,6 @@ static void sh_eth_tx_timeout(struct net_device *ndev)
/* tx_errors count up */
ndev->stats.tx_errors++;
- /* timer off */
- del_timer_sync(&mdp->timer);
-
/* Free all the skbuffs in the Rx queue. */
for (i = 0; i < RX_RING_SIZE; i++) {
rxdesc = &mdp->rx_ring[i];
@@ -1593,10 +1577,6 @@ static void sh_eth_tx_timeout(struct net_device *ndev)
/* device init */
sh_eth_dev_init(ndev);
-
- /* timer on */
- mdp->timer.expires = (jiffies + (24 * HZ)) / 10;/* 2.4 sec. */
- add_timer(&mdp->timer);
}
/* Packet transmit function */
@@ -1669,8 +1649,6 @@ static int sh_eth_close(struct net_device *ndev)
free_irq(ndev->irq, ndev);
- del_timer_sync(&mdp->timer);
-
/* Free all the skbuffs in the Rx queue. */
sh_eth_ring_free(ndev);
diff --git a/drivers/net/ethernet/renesas/sh_eth.h b/drivers/net/ethernet/renesas/sh_eth.h
index 57b8e1f..9e8e4d5 100644
--- a/drivers/net/ethernet/renesas/sh_eth.h
+++ b/drivers/net/ethernet/renesas/sh_eth.h
@@ -771,7 +771,6 @@ struct sh_eth_private {
struct sh_eth_txdesc *tx_ring;
struct sk_buff **rx_skbuff;
struct sk_buff **tx_skbuff;
- struct timer_list timer;
spinlock_t lock;
u32 cur_rx, dirty_rx; /* Producer/consumer ring indices */
u32 cur_tx, dirty_tx;
--
1.7.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v5 1/6] net: sh_eth: remove unnecessary function
2012-05-29 8:14 [PATCH v5 1/6] net: sh_eth: remove unnecessary function Shimoda, Yoshihiro
@ 2012-05-29 8:17 ` David Miller
2012-05-29 8:47 ` Shimoda, Yoshihiro
0 siblings, 1 reply; 3+ messages in thread
From: David Miller @ 2012-05-29 8:17 UTC (permalink / raw)
To: yoshihiro.shimoda.uh; +Cc: netdev, linux-sh
It is not appropriate to submit cleanups and feature additions for the
'net-next' tree at this time. That is only valid when I open the
net-next tree back up which will be shortly after the merge window
closes.
If you have bug fixes to submit for the 'net' tree, you must split
them off from these cleanups and submit them seperately.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v5 1/6] net: sh_eth: remove unnecessary function
2012-05-29 8:17 ` David Miller
@ 2012-05-29 8:47 ` Shimoda, Yoshihiro
0 siblings, 0 replies; 3+ messages in thread
From: Shimoda, Yoshihiro @ 2012-05-29 8:47 UTC (permalink / raw)
To: David Miller; +Cc: netdev, linux-sh
2012/05/29 17:17, David Miller wrote:
>
> It is not appropriate to submit cleanups and feature additions for the
> 'net-next' tree at this time. That is only valid when I open the
> net-next tree back up which will be shortly after the merge window
> closes.
>
> If you have bug fixes to submit for the 'net' tree, you must split
> them off from these cleanups and submit them seperately.
I understood it. The "PATCH 3/6" is a bug fix. So, I will submit it
first for the "net" tree.
After the merge window closes I will submit other patches.
Best regards,
Yoshihiro Shimoda
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-05-29 8:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-29 8:14 [PATCH v5 1/6] net: sh_eth: remove unnecessary function Shimoda, Yoshihiro
2012-05-29 8:17 ` David Miller
2012-05-29 8:47 ` Shimoda, Yoshihiro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).