Lines Matching defs:timeout
73 u64 timeout = (u64)n * USEC_PER_SEC;
75 do_div(timeout, apb->rate);
77 return timeout;
82 unsigned long timeout)
84 u64 n = (u64)timeout * apb->rate;
100 "APB-bus fault %d: Slave access timeout at 0x%08x\n",
278 unsigned long timeout;
286 timeout = bt1_apb_n_to_timeout_us(apb, n);
288 return scnprintf(buf, PAGE_SIZE, "%lu\n", timeout);
296 unsigned long timeout;
300 if (kstrtoul(buf, 0, &timeout) < 0)
303 n = bt1_apb_timeout_to_n_us(apb, timeout);
310 static DEVICE_ATTR_RW(timeout);