Lines Matching defs:count
162 int count;
175 * before latching the timer count to guarantee that although
176 * the jiffies value might be older than the count (that is,
179 * count), it cannot be newer.
182 /* read the count */
183 count = readl(ls1x_cs->reg_base + PWM_CNTR);
186 * It's possible for count to appear to go the wrong way for this
195 if (count < old_count && jifs == old_jifs)
196 count = old_count;
198 old_count = count;
203 return (u64)(jifs * ls1x_cs->ticks_per_jiffy) + count;