Searched refs:timer (Results 201 - 225 of 744) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/net/
H A Dtlan.c70 * v1.5 March 22, 2000 - Fixed another timer bug that would hang the driver
102 * - Updated with timer fixes from Andrew Morton.
121 * - Fixed timer bug in TLan_phyMonitor.
130 * - Fixed timer being added twice.
369 if ( priv->timer.function != NULL &&
375 priv->timer.function = &TLan_Timer;
379 priv->timer.data = (unsigned long) dev;
382 mod_timer(&priv->timer, jiffies + ticks);
887 init_timer(&priv->timer);
1157 if ( priv->timer
[all...]
H A Deepro100.c106 #include <linux/timer.h>
479 struct timer_list timer; /* Media selection timer. */ member in struct:speedo_private
838 init_timer(&sp->timer); /* used in ioctl() */
1044 /* Set the timer. The timer serves a dual purpose:
1049 sp->timer.expires = RUN_AT((24*HZ)/10); /* 2.4 sec. */
1050 sp->timer.data = (unsigned long)dev;
1051 sp->timer.function = &speedo_timer; /* timer handle
[all...]
H A Ddmfe.c72 #include <linux/timer.h>
139 #define DMFE_TIMER_WUT (jiffies + HZ * 1)/* timer wakeup time : 1 second */
235 struct timer_list timer; member in struct:dmfe_board_info
525 /* set and active a timer process */
526 init_timer(&db->timer);
527 db->timer.expires = DMFE_TIMER_WUT + HZ * 2;
528 db->timer.data = (unsigned long)dev;
529 db->timer.function = &dmfe_timer;
530 add_timer(&db->timer);
595 /* Init CR15, Tx jabber and Rx watchdog timer */
[all...]
H A Dau1000_eth.c39 #include <linux/timer.h>
698 del_timer(&aup->timer);
987 /* fatal error, don't restart the timer */
1027 aup->timer.expires = RUN_AT((1*HZ));
1028 aup->timer.data = (unsigned long)dev;
1029 aup->timer.function = &au1000_timer; /* timer handler */
1030 add_timer(&aup->timer);
1060 aup->timer.expires = RUN_AT((3*HZ));
1061 aup->timer
[all...]
H A Dwinbond-840.c127 #include <linux/timer.h>
358 struct timer_list timer; /* Media monitoring timer. */
718 /* Set the timer to check for link beat. */
719 init_timer(&np->timer);
720 np->timer.expires = jiffies + 1*HZ;
721 np->timer.data = (unsigned long)dev;
722 np->timer.function = &netdev_timer; /* timer handler */
723 add_timer(&np->timer);
357 struct timer_list timer; /* Media monitoring timer. */ member in struct:netdev_private
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/ddb5xxx/ddb5476/
H A Dsetup.c38 /* otherwise we use general purpose timer */
102 /* we are using the cpu counter for timer interrupts */
105 /* to generate the first timer interrupt */
112 ddb_out32(TIMER_BASE+4, 0x1); /* enable timer */
120 struct resource timer; member in struct:__anon439
129 "timer", 0x40, 0x5f, IORESOURCE_BUSY}, {
168 request_resource(&ioport_resource, &ddb5476_ioport.timer) ||
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ppc/boot/prep/
H A Dmisc.c125 int timer = 0; local
307 while (timer++ < 5*1000) {
327 break; /* Exit 'timer' loop */
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/joystick/
H A Danalog.c118 struct timer_list timer; member in struct:analog_port
157 #warning Precise timer not defined for this architecture.
321 mod_timer(&port->timer, jiffies + ANALOG_REFRESH_TIME);
332 mod_timer(&port->timer, jiffies + ANALOG_REFRESH_TIME);
344 del_timer(&port->timer);
348 * analog_calibrate_timer() calibrates the timer and computes loop
499 printk(" [%s timer, %d %sHz clock, %d ns res]\n", TIME_NAME,
576 init_timer(&port->timer);
577 port->timer.data = (long) port;
578 port->timer
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/rio/
H A Drio_linux.c182 /* timer */ 10, /* mS */
242 - Set rio_poll to 1 to poll every timer tick (10ms on Intel).
542 p->RIOHosts[data].timer.expires = jiffies + rio_poll;
543 add_timer (&p->RIOHosts[data].timer);
1343 /* Init the timer "always" to make sure that it can safely be
1346 init_timer (&hp->timer);
1350 hp->timer.data = i;
1351 hp->timer.function = rio_pollfunc;
1352 hp->timer.expires = jiffies + rio_poll;
1353 add_timer (&hp->timer);
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/hil/
H A Dhp_sdc.c60 * A timer task schedules the tasklet once per second just to make
212 if (hp_sdc.timer != NULL)
213 hp_sdc.timer(irq, dev_id, status, data);
589 if (hp_sdc.timer != NULL) {
595 hp_sdc.timer = callback;
661 if ((callback != hp_sdc.timer) ||
662 (hp_sdc.timer == NULL)) {
668 hp_sdc.timer = NULL;
724 /************************* Keepalive timer task *********************/
781 hp_sdc.timer
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/s390/char/
H A Dcon3215.c54 #define RAW3215_TIMER_RUNS 64 /* set if the output delay timer is on */
98 struct timer_list timer; /* timer for delayed output */ member in struct:_raw3215_info
301 del_timer(&raw->timer);
313 * done immediatly a timer is started with a delay of RAW3215_TIMEOUT.
327 del_timer(&raw->timer);
332 init_timer(&raw->timer);
333 raw->timer.expires = RAW3215_TIMEOUT + jiffies;
334 raw->timer.data = (unsigned long) raw;
335 raw->timer
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/scsi/
H A Dscsi_error.c15 #include <linux/timer.h>
93 * Purpose: Start timeout timer for a single scsi command.
97 * complete - timeout function to call if timer isn't
104 * More Notes: Each scsi command has it's own timer, and as it is added to
105 * the queue, we set up the timer. When the command completes,
106 * we cancel the timer. Pretty simple, really, especially
116 * first delete the timer. The timer handling code gets rather
128 SCSI_LOG_ERROR_RECOVERY(5, printk("Adding timer for command %p at %d (%p)\n", SCset, timeout, complete));
137 * Purpose: Delete/cancel timer fo
540 struct timer_list timer; local
[all...]
H A Dpci2220i.c52 #include <linux/timer.h>
156 struct timer_list timer; member in struct:__anon2523
1050 * Description: Start the timer.
1059 padapter->timer.expires = jiffies + TIMEOUT_DATA;
1060 add_timer (&padapter->timer);
1065 * Description: Start the timer.
1322 * Description: Reconstruct timer expiry routine.
1714 del_timer (&padapter->timer);
1730 del_timer (&padapter->timer);
1759 del_timer (&padapter->timer);
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/decnet/
H A Ddn_dev.c17 * Steve Whitehouse : Fixed bug which sometimes killed timer
29 #include <linux/timer.h>
637 msg->timer = dn_htons((unsigned short)dn_db->parms.t3);
807 dn_db->timer.data = (unsigned long)dev;
808 dn_db->timer.function = dn_dev_timer_func;
809 dn_db->timer.expires = jiffies + (dn_db->parms.t2 * HZ);
811 add_timer(&dn_db->timer);
837 init_timer(&dn_db->timer);
897 del_timer_sync(&dn_db->timer);
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dhp_sdc.h44 #include <linux/timer.h>
95 #define HP_SDC_STATUS_PERIODIC 0x10 /* Periodic 10ms timer */
96 #define HP_SDC_STATUS_USERTIMER 0x20 /* "Special purpose" timer */
138 #define HP_SDC_IM_PT 0x08 /* Mask the periodic timer irq */
173 #define HP_SDC_CMD_LOAD_FHS 0x36 /* Load the fast handshake timer */
174 #define HP_SDC_CMD_LOAD_MT 0x38 /* Load the match timer */
175 #define HP_SDC_CMD_LOAD_DT 0x3B /* Load the delay timer */
176 #define HP_SDC_CMD_LOAD_CT 0x3E /* Load the cycle timer */
189 #define HP_SDC_CMD_READ_T1 0x13 /* Load timer output buffer byte 1 */
190 #define HP_SDC_CMD_READ_T2 0x14 /* Load timer outpu
275 hp_sdc_irqhook *timer, *reg, *hil, *pup, *cooked; member in struct:__anon11160
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/sunrpc/
H A Dsched.h12 #include <linux/timer.h>
57 * timeout_fn to be executed by timer bottom half
74 struct timer_list tk_timer; /* kernel timer */
181 rpc_action action, rpc_action timer);
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dhp_sdc.h44 #include <linux/timer.h>
95 #define HP_SDC_STATUS_PERIODIC 0x10 /* Periodic 10ms timer */
96 #define HP_SDC_STATUS_USERTIMER 0x20 /* "Special purpose" timer */
138 #define HP_SDC_IM_PT 0x08 /* Mask the periodic timer irq */
173 #define HP_SDC_CMD_LOAD_FHS 0x36 /* Load the fast handshake timer */
174 #define HP_SDC_CMD_LOAD_MT 0x38 /* Load the match timer */
175 #define HP_SDC_CMD_LOAD_DT 0x3B /* Load the delay timer */
176 #define HP_SDC_CMD_LOAD_CT 0x3E /* Load the cycle timer */
189 #define HP_SDC_CMD_READ_T1 0x13 /* Load timer output buffer byte 1 */
190 #define HP_SDC_CMD_READ_T2 0x14 /* Load timer outpu
275 hp_sdc_irqhook *timer, *reg, *hil, *pup, *cooked; member in struct:__anon6744
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/sunrpc/
H A Dsched.h12 #include <linux/timer.h>
57 * timeout_fn to be executed by timer bottom half
74 struct timer_list tk_timer; /* kernel timer */
181 rpc_action action, rpc_action timer);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/isdn/hisax/
H A Delsa.c366 byteout(cs->hw.elsa.timer, 0);
491 if (cs->hw.elsa.timer) {
493 byteout(cs->hw.elsa.timer, 0);
499 byteout(cs->hw.elsa.timer, 0);
504 byteout(cs->hw.elsa.timer, 0);
699 byteout(cs->hw.elsa.timer, 0);
719 byteout(cs->hw.elsa.timer, 0);
726 printk(KERN_INFO "Elsa: %d timer tics in 110 msek\n",
730 printk(KERN_INFO "Elsa: timer and irq OK\n");
734 "Elsa: timer ti
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/video/
H A Dsun3fb.c245 fb->cursor.timer.expires = jiffies + fb->cursor.blink_rate;
246 add_timer(&fb->cursor.timer);
619 init_timer(&fb->cursor.timer);
620 fb->cursor.timer.expires = jiffies + fb->cursor.blink_rate;
621 fb->cursor.timer.data = (unsigned long)fb;
622 fb->cursor.timer.function = sun3fb_cursor_timer_handler;
623 add_timer(&fb->cursor.timer);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/bluetooth/
H A Dbluecard_cs.c31 #include <linux/timer.h>
78 struct timer_list timer; /* For LED control */ member in struct:bluecard_info_t
196 mod_timer(&(info->timer), jiffies + HZ / 4);
202 mod_timer(&(info->timer), jiffies + HZ / 2);
716 init_timer(&(info->timer));
717 info->timer.function = &bluecard_activity_led_timeout;
718 info->timer.data = (u_long)info;
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/usb/
H A Dcatc.c179 struct timer_list timer; member in struct:catc
589 mod_timer(&catc->timer, jiffies + STATS_UPDATE);
743 mod_timer(&catc->timer, jiffies + STATS_UPDATE);
755 del_timer_sync(&catc->timer);
809 init_timer(&catc->timer);
810 catc->timer.data = (long) catc;
811 catc->timer.function = catc_stats_timer;
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/core/
H A Dsock.c32 * instead they leave that for the DESTROY timer.
34 * Alan Cox : TCP ack handling is buggy, the DESTROY timer
36 * for memory when we hit 0. Also altered the timer
40 * and fixed timer/inet_bh race.
102 #include <linux/timer.h>
957 init_timer(&sk->timer);
958 sk->timer.expires=jiffies+SOCK_DESTROY_TIME;
959 sk->timer.function=sklist_destroy_timer;
960 sk->timer.data = (unsigned long)sk;
961 add_timer(&sk->timer);
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/kernel/
H A Dsched.c405 * in jiffies will be returned, or 0 if the timer expired in time
418 struct timer_list timer; local
453 init_timer(&timer);
454 timer.expires = expire;
455 timer.data = (unsigned long) current;
456 timer.function = process_timeout;
458 add_timer(&timer);
460 del_timer_sync(&timer);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/cdrom/
H A Dcm206.c188 #include <linux/timer.h>
278 struct timer_list timer; /* time-out */ member in struct:cm206_struct
383 del_timer(&cd->timer);
393 del_timer(&cd->timer);
451 cd->timer.data = (unsigned long) wait;
452 cd->timer.expires = jiffies + timeout;
453 add_timer(&cd->timer);
456 del_timer(&cd->timer);
1510 cd->timer.function = cm206_timeout;

Completed in 305 milliseconds

1234567891011>>