diff options
Diffstat (limited to 'drivers/usb/host/hc_crisv10.c')
-rw-r--r-- | drivers/usb/host/hc_crisv10.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/hc_crisv10.c b/drivers/usb/host/hc_crisv10.c index 81f8f6b7fdce..a8267cf17db4 100644 --- a/drivers/usb/host/hc_crisv10.c +++ b/drivers/usb/host/hc_crisv10.c | |||
@@ -178,8 +178,8 @@ static __u8 root_hub_hub_des[] = | |||
178 | 0xff /* __u8 PortPwrCtrlMask; *** 7 ports max *** */ | 178 | 0xff /* __u8 PortPwrCtrlMask; *** 7 ports max *** */ |
179 | }; | 179 | }; |
180 | 180 | ||
181 | static struct timer_list bulk_start_timer = TIMER_INITIALIZER(NULL, 0, 0); | 181 | static DEFINE_TIMER(bulk_start_timer, NULL, 0, 0); |
182 | static struct timer_list bulk_eot_timer = TIMER_INITIALIZER(NULL, 0, 0); | 182 | static DEFINE_TIMER(bulk_eot_timer, NULL, 0, 0); |
183 | 183 | ||
184 | /* We want the start timer to expire before the eot timer, because the former might start | 184 | /* We want the start timer to expire before the eot timer, because the former might start |
185 | traffic, thus making it unnecessary for the latter to time out. */ | 185 | traffic, thus making it unnecessary for the latter to time out. */ |