Searched defs:motor_off_timer (Results 1 - 2 of 2) sorted by relevance

/drivers/block/
H A Damiflop.c150 static struct timer_list motor_off_timer[FD_MAX_UNITS]; variable in typeref:struct:timer_list
340 del_timer(motor_off_timer + nr);
381 motor_off_timer[drive].expires = jiffies + 1;
382 add_timer(motor_off_timer + drive);
397 motor_off_timer[drive].data = nr | 0x80000000;
398 mod_timer(motor_off_timer + drive, jiffies + 3*HZ);
1801 init_timer(&motor_off_timer[i]);
1802 motor_off_timer[i].expires = 0;
1803 motor_off_timer[i].data = i|0x80000000;
1804 motor_off_timer[
[all...]
H A Dfloppy.c410 static struct timer_list motor_off_timer[N_DRIVE]; variable in typeref:struct:timer_list
921 del_timer(motor_off_timer + drive);
929 motor_off_timer[drive].expires =
932 add_timer(motor_off_timer + drive);
1902 del_timer(motor_off_timer + current_drive);
4210 init_timer(&motor_off_timer[dr]);
4211 motor_off_timer[dr].data = dr;
4212 motor_off_timer[dr].function = motor_off_callback;
4370 del_timer_sync(&motor_off_timer[dr]);
4524 if (timer_pending(motor_off_timer
[all...]

Completed in 60 milliseconds