[SCSI] fcoe: Use setup_timer() and mod_timer()

Use helper functions for watchdog timer setup.

Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
This commit is contained in:
Robert Love 2009-02-27 10:56:00 -08:00 committed by James Bottomley
parent fc47ff6b1b
commit a468f328ad

View file

@ -1435,11 +1435,9 @@ static int __init fcoe_init(void)
*/
fcoe_dev_setup();
init_timer(&fcoe_timer);
fcoe_timer.data = 0;
fcoe_timer.function = fcoe_watchdog;
fcoe_timer.expires = (jiffies + (10 * HZ));
add_timer(&fcoe_timer);
setup_timer(&fcoe_timer, fcoe_watchdog, 0);
mod_timer(&fcoe_timer, jiffies + (10 * HZ));
/* initiatlize the fcoe transport */
fcoe_transport_init();