Lines Matching defs:ipg
3033 * @ipg: the interpacket delay in tenths of nanoseconds
3037 int t3_set_sched_ipg(adapter_t *adap, int sched, unsigned int ipg)
3041 /* convert ipg to nearest number of core clocks */
3042 ipg *= core_ticks_per_usec(adap);
3043 ipg = (ipg + 5000) / 10000;
3044 if (ipg > 0xffff)
3050 v = (v & 0xffff) | (ipg << 16);
3052 v = (v & 0xffff0000) | ipg;
3063 * @ipg: the interpacket delay in tenths of nanoseconds
3068 unsigned int *ipg)
3087 if (ipg) {
3094 *ipg = (10000 * v) / core_ticks_per_usec(adap);