diff options
Diffstat (limited to 'drivers/atm/idt77105.c')
-rw-r--r-- | drivers/atm/idt77105.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/atm/idt77105.c b/drivers/atm/idt77105.c index 48ba84369..320dd0ac8 100644 --- a/drivers/atm/idt77105.c +++ b/drivers/atm/idt77105.c @@ -48,10 +48,12 @@ static void idt77105_stats_timer_func(unsigned long); static void idt77105_restart_timer_func(unsigned long); -static struct timer_list stats_timer = { NULL, NULL, 0L, 0L, - &idt77105_stats_timer_func }; -static struct timer_list restart_timer = { NULL, NULL, 0L, 0L, - &idt77105_restart_timer_func }; +static struct timer_list stats_timer = { + function: &idt77105_stats_timer_func +}; +static struct timer_list restart_timer = { + function: &idt77105_restart_timer_func +}; static int start_timer = 1; static struct idt77105_priv *idt77105_all = NULL; |