Lines Matching +full:tmr +full:- +full:add
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
20 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
26 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
118 * enum sci_status - This is the general return status enumeration for non-IO,
119 * non-task management related SCI interface methods.
344 * of messages (MSI-X) is not supported.
400 * enum sci_io_status - This enumeration depicts all of the possible IO
405 * Add the API to retrieve the SCU status from the core. Check to see that the
406 * following status are properly handled: - SCI_IO_FAILURE_UNSUPPORTED_PROTOCOL
407 * - SCI_IO_FAILURE_INVALID_IO_TAG
433 * enum sci_task_status - This enumeration depicts all of the possible task
458 * sci_swab32_cpy - convert between scsi and scu-hardware byte format
459 * @dest: receive the 4-byte endian swapped version of src
464 * is always a swab32()-per-dword conversion of the standard definition,
465 * i.e. single byte fields swapped and multi-byte fields in little-
472 while (--word_cnt >= 0) in sci_swab32_cpy()
501 void sci_init_timer(struct sci_timer *tmr, void (*fn)(struct timer_list *t)) in sci_init_timer() argument
503 tmr->cancel = false; in sci_init_timer()
504 timer_setup(&tmr->timer, fn, 0); in sci_init_timer()
507 static inline void sci_mod_timer(struct sci_timer *tmr, unsigned long msec) in sci_mod_timer() argument
509 tmr->cancel = false; in sci_mod_timer()
510 mod_timer(&tmr->timer, jiffies + msecs_to_jiffies(msec)); in sci_mod_timer()
513 static inline void sci_del_timer(struct sci_timer *tmr) in sci_del_timer() argument
515 tmr->cancel = true; in sci_del_timer()
516 del_timer(&tmr->timer); in sci_del_timer()