From mithlesh@linsyssoft.com Thu Apr 9 14:46:15 2009 From: Mithlesh Thukral Date: Wed, 25 Mar 2009 15:49:58 +0530 (IST) Subject: Staging: sxg: Fire watchdog timer at end of open routine to change the link To: Greg Kroah-Hartman Cc: Sahara Project , Christopher Harrer Message-ID: The watchdog timer which updates the link status was not fired at the end of sxg_entry_open(). Add that. Signed-off-by: LinSysSoft Sahara Team Signed-off-by: Mithlesh Thukral Signed-off-by: Greg Kroah-Hartman --- drivers/staging/sxg/sxg.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/staging/sxg/sxg.c +++ b/drivers/staging/sxg/sxg.c @@ -2254,6 +2254,8 @@ static int sxg_entry_open(struct net_dev DBG_ERROR("sxg: %s EXIT\n", __func__); spin_unlock_irqrestore(&sxg_global.driver_lock, sxg_global.flags); + mod_timer(&adapter->watchdog_timer, jiffies); + return STATUS_SUCCESS; }