Lines Matching refs:bytes_to_read
355 ssize_t bytes_to_read = 0; in hwicap_read() local
369 bytes_to_read = in hwicap_read()
374 if (copy_to_user(buf, drvdata->read_buffer, bytes_to_read)) { in hwicap_read()
378 drvdata->read_buffer_in_use -= bytes_to_read; in hwicap_read()
380 drvdata->read_buffer + bytes_to_read, in hwicap_read()
381 4 - bytes_to_read); in hwicap_read()
399 bytes_to_read = words << 2; in hwicap_read()
401 if (bytes_to_read > PAGE_SIZE) in hwicap_read()
402 bytes_to_read = PAGE_SIZE; in hwicap_read()
405 bytes_remaining = bytes_to_read & 3; in hwicap_read()
406 bytes_to_read &= ~3; in hwicap_read()
407 words = bytes_to_read >> 2; in hwicap_read()
419 if (copy_to_user(buf, kbuf, bytes_to_read)) { in hwicap_read()
430 status = bytes_to_read; in hwicap_read()