Lines Matching refs: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",
276 unsigned long timeout;
284 timeout = bt1_apb_n_to_timeout_us(apb, n);
286 return scnprintf(buf, PAGE_SIZE, "%lu\n", timeout);
294 unsigned long timeout;
298 if (kstrtoul(buf, 0, &timeout) < 0)
301 n = bt1_apb_timeout_to_n_us(apb, timeout);
308 static DEVICE_ATTR_RW(timeout);