Home
last modified time | relevance | path

Searched refs:buf_space (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.10/drivers/platform/chrome/
Dcros_ec_debugfs.c73 int buf_space; in cros_ec_console_log_work() local
82 buf_space = CIRC_SPACE(cb->head, cb->tail, LOG_SIZE); in cros_ec_console_log_work()
85 if (!buf_space) { in cros_ec_console_log_work()
103 while (idx < ret && ec_buffer[idx] != '\0' && buf_space > 0) { in cros_ec_console_log_work()
107 buf_space--; in cros_ec_console_log_work()
/Linux-v5.10/drivers/usb/gadget/udc/
Dsnps_udc_core.c724 unsigned buf_space; in udc_rxfifo_read() local
732 buf_space = req->req.length - req->req.actual; in udc_rxfifo_read()
734 if (bytes > buf_space) { in udc_rxfifo_read()
735 if ((buf_space % ep->ep.maxpacket) != 0) { in udc_rxfifo_read()
738 ep->ep.name, bytes, buf_space); in udc_rxfifo_read()
741 bytes = buf_space; in udc_rxfifo_read()