diff options
author | Trent Piepho <tpiepho@freescale.com> | 2008-10-08 18:46:57 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-10-08 18:46:57 -0400 |
commit | 0acb28396728f42b6b1553c85d27c37513796043 (patch) | |
tree | 2b56f5734d139c748c030e90ccf047a3b261fb1e /drivers/net/phy/phy.c | |
parent | 51e2a3846eab18711f4eb59cd0a4c33054e2980a (diff) |
phylib: Wake PHY state machine on interrupt
This way the phy layer will respond to a change in phy state immediately,
instead of up to one second later when the state machine timer runs.
Signed-off-by: Trent Piepho <tpiepho@freescale.com>
Acked-by: Andy Fleming <afleming@freescale.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/phy.c')
-rw-r--r-- | drivers/net/phy/phy.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index 0433fcd00943..20cc82c78137 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c | |||
@@ -729,6 +729,12 @@ static void phy_change(struct work_struct *work) | |||
729 | if (err) | 729 | if (err) |
730 | goto irq_enable_err; | 730 | goto irq_enable_err; |
731 | 731 | ||
732 | /* Stop timer and run the state queue now. The work function for | ||
733 | * state_queue will start the timer up again. | ||
734 | */ | ||
735 | del_timer(&phydev->phy_timer); | ||
736 | schedule_work(&phydev->state_queue); | ||
737 | |||
732 | return; | 738 | return; |
733 | 739 | ||
734 | irq_enable_err: | 740 | irq_enable_err: |